Fix typo in WooCommerce plugin (#16135)

* Fixed typo

* Fixed more typo

* Fixed more typo

* Fix tyop

* Fix more typo

* Fix more typo

* Fix typo

* Fix typo

* Fix typo

* Fix typo datatime object

* Fix short name of compat

* Fix typo: update short name

* Fix typo "deactive" to "deactivate" and short BW - Compat

* Fix typo "Backwards compat"

* Fix typo 'parameters'

* Fix more typo 'pararmeters'

* Fix typo 'compund'

* FIx typo order

* Fix typo

* Fix typo 'incorrecly'

* Fix typo 'genarate'

* Fix typo 'reletive'

* Fix typo 'Handly'

* Fix typo 'rotatated'

* Fix typo

* Fix typo 'additonal'

* Fix typos
This commit is contained in:
Jaydeep Rami 2017-07-17 15:40:52 +05:30 committed by Mike Jolley
parent 3f1144cf06
commit 3522857d23
70 changed files with 85 additions and 85 deletions

View File

@ -644,7 +644,7 @@ abstract class WC_Data {
}
/**
* Sets a date prop whilst handling formatting and datatime objects.
* Sets a date prop whilst handling formatting and datetime objects.
*
* @since 3.0.0
* @param string $prop Name of prop to set.

View File

@ -616,7 +616,7 @@ abstract class WC_Abstract_Order extends WC_Abstract_Legacy_Order {
}
/**
* Sets order tax (sum of cart and shipping tax). Used internaly only.
* Sets order tax (sum of cart and shipping tax). Used internally only.
*
* @param string $value
* @throws WC_Data_Exception

View File

@ -130,7 +130,7 @@ class WC_Product extends WC_Abstract_Legacy_Product {
/**
* Get internal type. Should return string and *should be overridden* by child classes.
*
* The product_type property is deprecated but is used here for BW compat with child classes which may be defining product_type and not have a get_type method.
* The product_type property is deprecated but is used here for BW compatibility with child classes which may be defining product_type and not have a get_type method.
*
* @since 3.0.0
* @return string
@ -452,7 +452,7 @@ class WC_Product extends WC_Abstract_Legacy_Product {
}
/**
* Get upsel IDs.
* Get upsell IDs.
*
* @since 3.0.0
* @param string $context
@ -1331,7 +1331,7 @@ class WC_Product extends WC_Abstract_Legacy_Product {
/**
* Checks the product type.
*
* Backwards compat with downloadable/virtual.
* Backwards compatibility with downloadable/virtual.
*
* @param string|array $type Array or string of types
* @return bool

View File

@ -326,7 +326,7 @@ abstract class WC_REST_Terms_Controller extends WC_REST_Controller {
$response = rest_ensure_response( $response );
// Store pagation values for headers then unset for count query.
// Store pagination values for headers then unset for count query.
$per_page = (int) $prepared_args['number'];
$page = ceil( ( ( (int) $prepared_args['offset'] ) / $per_page ) + 1 );

View File

@ -133,7 +133,7 @@ class WC_Admin_Reports {
}
$reports = apply_filters( 'woocommerce_admin_reports', $reports );
$reports = apply_filters( 'woocommerce_reports_charts', $reports ); // Backwards compat
$reports = apply_filters( 'woocommerce_reports_charts', $reports ); // Backwards compatibility.
foreach ( $reports as $key => $report_group ) {
if ( isset( $reports[ $key ]['charts'] ) ) {

View File

@ -18,7 +18,7 @@ if ( ! defined( 'ABSPATH' ) ) {
*/
class WC_Admin_Setup_Wizard {
/** @var string Currenct Step */
/** @var string Current Step */
private $step = '';
/** @var array Steps for the setup wizard */

View File

@ -374,7 +374,7 @@ class WC_Helper {
), admin_url( 'admin.php' ) );
/* translators: %1$s: product name, %2$s: deactivate url */
$message = sprintf( __( 'Subscription for %1$s deactivated successfully. You will no longer receive updates for this product. <a href="%2$s">Click here</a> if you wish to deactive the plugin as well.', 'woocommerce' ),
$message = sprintf( __( 'Subscription for %1$s deactivated successfully. You will no longer receive updates for this product. <a href="%2$s">Click here</a> if you wish to deactivate the plugin as well.', 'woocommerce' ),
'<strong>' . esc_html( $subscription['product_name'] ) . '</strong>', esc_url( $deactivate_plugin_url ) );
}
@ -835,7 +835,7 @@ class WC_Helper {
$plugins = get_plugins();
$woo_plugins = array();
// Back-compat for woothemes_queue_update().
// Backwards compatibility for woothemes_queue_update().
$_compat = array();
if ( ! empty( $GLOBALS['woothemes_queued_updates'] ) ) {
foreach ( $GLOBALS['woothemes_queued_updates'] as $_compat_plugin ) {
@ -880,7 +880,7 @@ class WC_Helper {
foreach ( $themes as $theme ) {
$header = $theme->get( 'Woo' );
// Back-compat for theme_info.txt
// Backwards compatibility for theme_info.txt
if ( ! $header ) {
$txt = $theme->get_stylesheet_directory() . '/theme_info.txt';
if ( is_readable( $txt ) ) {

View File

@ -32,7 +32,7 @@ class WC_Meta_Box_Product_Images {
if ( metadata_exists( 'post', $post->ID, '_product_image_gallery' ) ) {
$product_image_gallery = get_post_meta( $post->ID, '_product_image_gallery', true );
} else {
// Backwards compat
// Backwards compatibility.
$attachment_ids = get_posts( 'post_parent=' . $post->ID . '&numberposts=-1&post_type=attachment&orderby=menu_order&order=ASC&post_mime_type=image&fields=ids&meta_key=_woocommerce_exclude_image&meta_value=0' );
$attachment_ids = array_diff( $attachment_ids, array( get_post_thumbnail_id() ) );
$product_image_gallery = implode( ',', $attachment_ids );

View File

@ -92,7 +92,7 @@ class WC_REST_Authentication {
* @return WP_Error|null|bool
*/
public function check_authentication_error( $error ) {
// Passthrough other errors.
// Pass through other errors.
if ( ! empty( $error ) ) {
return $error;
}
@ -103,7 +103,7 @@ class WC_REST_Authentication {
/**
* Set authentication error.
*
* @param WP_Error $error Authication error data.
* @param WP_Error $error Authentication error data.
*/
protected function set_error( $error ) {
// Reset user.

View File

@ -240,7 +240,7 @@ class WC_REST_Coupons_Controller extends WC_REST_Legacy_Coupons_Controller {
}
/**
* Only reutrn writeable props from schema.
* Only return writable props from schema.
*
* @param array $schema
* @return bool

View File

@ -394,7 +394,7 @@ class WC_REST_Orders_Controller extends WC_REST_Legacy_Orders_Controller {
}
/**
* Only reutrn writeable props from schema.
* Only return writable props from schema.
*
* @param array $schema
* @return bool

View File

@ -215,7 +215,7 @@ class WC_REST_Legacy_Orders_Controller extends WC_REST_CRUD_Controller {
* The dynamic portion of the hook name, $this->post_type, refers to post_type of the post being
* prepared for the response.
*
* @param WC_Order $order The prder object.
* @param WC_Order $order The Order object.
* @param WP_REST_Request $request Request object.
*/
return apply_filters( "woocommerce_rest_pre_insert_{$this->post_type}", $order, $request );

View File

@ -293,7 +293,7 @@ class WC_API_Authentication {
*
* @since 2.1
* @see rawurlencode()
* @param array $parameters un-normalized pararmeters
* @param array $parameters un-normalized parameters
* @return array normalized parameters
*/
private function normalize_parameters( $parameters ) {

View File

@ -291,7 +291,7 @@ class WC_API_Authentication {
*
* @since 2.1
* @see rawurlencode()
* @param array $parameters un-normalized pararmeters
* @param array $parameters un-normalized parameters
* @return array normalized parameters
*/
private function normalize_parameters( $parameters ) {

View File

@ -608,7 +608,7 @@ class WC_API_Customers extends WC_API_Resource {
$query_args['order'] = $args['order'];
}
// Orderby
// Order by
if ( ! empty( $args['orderby'] ) ) {
$query_args['orderby'] = $args['orderby'];

View File

@ -290,7 +290,7 @@ class WC_API_Authentication {
*
* @since 2.1
* @see rawurlencode()
* @param array $parameters un-normalized pararmeters
* @param array $parameters un-normalized parameters
* @return array normalized parameters
*/
private function normalize_parameters( $parameters ) {

View File

@ -598,7 +598,7 @@ class WC_API_Customers extends WC_API_Resource {
$query_args['order'] = $args['order'];
}
// Orderby
// Order by
if ( ! empty( $args['orderby'] ) ) {
$query_args['orderby'] = $args['orderby'];

View File

@ -297,7 +297,7 @@ class WC_API_Taxes extends WC_API_Resource {
continue;
}
// Fix compund and shipping values
// Fix compound and shipping values
if ( in_array( $key, array( 'compound', 'shipping' ) ) ) {
$value = $value ? 1 : 0;
}

View File

@ -219,7 +219,7 @@ class WC_REST_Coupons_V1_Controller extends WC_REST_Posts_Controller {
}
/**
* Only reutrn writeable props from schema.
* Only return writable props from schema.
* @param array $schema
* @return bool
*/

View File

@ -279,7 +279,7 @@ class WC_REST_Customers_V1_Controller extends WC_REST_Controller {
$response = rest_ensure_response( $users );
// Store pagation values for headers then unset for count query.
// Store pagination values for headers then unset for count query.
$per_page = (int) $prepared_args['number'];
$page = ceil( ( ( (int) $prepared_args['offset'] ) / $per_page ) + 1 );

View File

@ -496,7 +496,7 @@ class WC_REST_Orders_V1_Controller extends WC_REST_Posts_Controller {
* The dynamic portion of the hook name, $this->post_type, refers to post_type of the post being
* prepared for the response.
*
* @param WC_Order $order The prder object.
* @param WC_Order $order The order object.
* @param WP_REST_Request $request Request object.
*/
return apply_filters( "woocommerce_rest_pre_insert_{$this->post_type}", $order, $request );
@ -513,7 +513,7 @@ class WC_REST_Orders_V1_Controller extends WC_REST_Posts_Controller {
}
/**
* Only reutrn writeable props from schema.
* Only return writable props from schema.
* @param array $schema
* @return bool
*/

View File

@ -252,14 +252,14 @@ class WC_REST_Taxes_V1_Controller extends WC_REST_Controller {
$response = rest_ensure_response( $taxes );
// Store pagation values for headers then unset for count query.
// Store pagination values for headers then unset for count query.
$per_page = (int) $prepared_args['number'];
$page = ceil( ( ( (int) $prepared_args['offset'] ) / $per_page ) + 1 );
// Query only for ids.
$wpdb->get_results( str_replace( 'SELECT *', 'SELECT tax_rate_id', $query ) );
// Calcule totals.
// Calculate totals.
$total_taxes = (int) $wpdb->num_rows;
$response->header( 'X-WP-Total', (int) $total_taxes );
$max_pages = ceil( $total_taxes / $per_page );

View File

@ -592,7 +592,7 @@ class WC_AJAX {
$variation_object->set_parent_id( $product_id );
$variation_id = $variation_object->save();
$variation = get_post( $variation_id );
$variation_data = array_merge( array_map( 'maybe_unserialize', get_post_custom( $variation_id ) ), wc_get_product_variation_attributes( $variation_id ) ); // kept for BW compat.
$variation_data = array_merge( array_map( 'maybe_unserialize', get_post_custom( $variation_id ) ), wc_get_product_variation_attributes( $variation_id ) ); // kept for BW compatibility.
include( 'admin/meta-boxes/views/html-variation-admin.php' );
wp_die();
}
@ -1040,7 +1040,7 @@ class WC_AJAX {
// Save order items first
wc_save_order_items( $order_id, $items );
// Grab the order and recalc taxes
// Grab the order and recalculate taxes
$order = wc_get_order( $order_id );
$order->calculate_taxes( $calculate_tax_args );
$order->calculate_totals( false );
@ -1654,7 +1654,7 @@ class WC_AJAX {
foreach ( $variations as $variation_object ) {
$variation_id = $variation_object->get_id();
$variation = get_post( $variation_id );
$variation_data = array_merge( array_map( 'maybe_unserialize', get_post_custom( $variation_id ) ), wc_get_product_variation_attributes( $variation_id ) ); // kept for BW compat.
$variation_data = array_merge( array_map( 'maybe_unserialize', get_post_custom( $variation_id ) ), wc_get_product_variation_attributes( $variation_id ) ); // kept for BW compatibility.
include( 'admin/meta-boxes/views/html-variation-admin.php' );
$loop++;
}

View File

@ -379,7 +379,7 @@ class WC_Auth {
} catch ( Exception $e ) {
$this->maybe_delete_key( $consumer_data );
/* translators: %s: error messase */
/* translators: %s: error message */
wp_die( sprintf( __( 'Error: %s.', 'woocommerce' ), $e->getMessage() ), __( 'Access denied', 'woocommerce' ), array( 'response' => 401 ) );
}
}

View File

@ -1339,7 +1339,7 @@ class WC_Cart {
/**
* Store costs + taxes for lines. For tax inclusive prices, we do some extra rounding logic so the stored
* values "add up" when viewing the order in admin. This does have the disadvatage of not being able to
* values "add up" when viewing the order in admin. This does have the disadvantage of not being able to
* recalculate the tax total/subtotal accurately in the future, but it does ensure the data looks correct.
*
* Tax exclusive prices are not affected.

View File

@ -316,7 +316,7 @@ class WC_Coupon extends WC_Legacy_Coupon {
}
/**
* Get minium spend amount.
* Get minimum spend amount.
* @since 3.0.0
* @param string $context
* @return float
@ -665,7 +665,7 @@ class WC_Coupon extends WC_Legacy_Coupon {
*/
/**
* Developers can programically return coupons. This function will read those values into our WC_Coupon class.
* Developers can programmatically return coupons. This function will read those values into our WC_Coupon class.
* @since 3.0.0
* @param string $code Coupon code
* @param array $coupon Array of coupon properties
@ -929,7 +929,7 @@ class WC_Coupon extends WC_Legacy_Coupon {
}
/**
* Cart discounts cannot be added if non-eligble product is found in cart.
* Cart discounts cannot be added if non-eligible product is found in cart.
*/
private function validate_cart_excluded_items() {
if ( ! $this->is_type( wc_get_product_coupon_types() ) ) {

View File

@ -40,7 +40,7 @@ class WC_Form_Handler {
}
/**
* Remove key and login from querystring, set cookie, and redirect to account page to show the form.
* Remove key and login from query string, set cookie, and redirect to account page to show the form.
*/
public static function redirect_reset_password_link() {
if ( is_account_page() && ! empty( $_GET['key'] ) && ! empty( $_GET['login'] ) ) {

View File

@ -131,7 +131,7 @@ class WC_Order_Item_Coupon extends WC_Order_Item {
| Array Access Methods
|--------------------------------------------------------------------------
|
| For backwards compat with legacy arrays.
| For backwards compatibility with legacy arrays.
|
*/

View File

@ -188,7 +188,7 @@ class WC_Order_Item_Fee extends WC_Order_Item {
| Array Access Methods
|--------------------------------------------------------------------------
|
| For backwards compat with legacy arrays.
| For backwards compatibility with legacy arrays.
|
*/

View File

@ -37,7 +37,7 @@ class WC_Order_Item_Meta {
public function __construct( $item = array(), $product = null ) {
wc_deprecated_function( 'WC_Order_Item_Meta::__construct', '3.1', 'WC_Order_Item_Product' );
// Backwards (pre 2.4) compat
// Backwards (pre 2.4) compatibility
if ( ! isset( $item['item_meta'] ) ) {
$this->legacy = true;
$this->meta = array_filter( (array) $item );

View File

@ -397,7 +397,7 @@ class WC_Order_Item_Product extends WC_Order_Item {
| Array Access Methods
|--------------------------------------------------------------------------
|
| For backwards compat with legacy arrays.
| For backwards compatibility with legacy arrays.
|
*/

View File

@ -205,7 +205,7 @@ class WC_Order_Item_Shipping extends WC_Order_Item {
| Array Access Methods
|--------------------------------------------------------------------------
|
| For backwards compat with legacy arrays.
| For backwards compatibility with legacy arrays.
|
*/

View File

@ -215,7 +215,7 @@ class WC_Order_Item_Tax extends WC_Order_Item {
| Array Access Methods
|--------------------------------------------------------------------------
|
| For backwards compat with legacy arrays.
| For backwards compatibility with legacy arrays.
|
*/

View File

@ -219,7 +219,7 @@ class WC_Order_Item extends WC_Data implements ArrayAccess {
| Array Access Methods
|--------------------------------------------------------------------------
|
| For backwards compat with legacy arrays.
| For backwards compatibility with legacy arrays.
|
*/

View File

@ -122,7 +122,7 @@ class WC_Product_External extends WC_Product {
}
/**
* xternal products cannot be backordered.
* External products cannot be backordered.
*
* @since 3.0.0
* @param string $backorders Options: 'yes', 'no' or 'notify'.

View File

@ -162,7 +162,7 @@ class WC_Product_Grouped extends WC_Product {
* upwards (from child to parent) when the variation is saved.
*
* @param WC_Product|int $product Product object or ID for which you wish to sync.
* @param bool $save If true, the prouduct object will be saved to the DB before returning it.
* @param bool $save If true, the product object will be saved to the DB before returning it.
* @return WC_Product Synced product object.
*/
public static function sync( $product, $save = true ) {

View File

@ -538,7 +538,7 @@ class WC_Product_Variable extends WC_Product {
* Sync parent stock status with the status of all children and save.
*
* @param WC_Product|int $product Product object or ID for which you wish to sync.
* @param bool $save If true, the prouduct object will be saved to the DB before returning it.
* @param bool $save If true, the product object will be saved to the DB before returning it.
* @return WC_Product Synced product object.
*/
public static function sync_stock_status( $product, $save = true ) {

View File

@ -516,7 +516,7 @@ class WC_Query {
}
/**
* WP Core doens't let us change the sort direction for invidual orderby params - https://core.trac.wordpress.org/ticket/17065.
* WP Core doens't let us change the sort direction for individual orderby params - https://core.trac.wordpress.org/ticket/17065.
*
* This lets us sort by meta value desc, and have a second orderby param.
*

View File

@ -82,7 +82,7 @@ class WC_Shipping_Zones {
*
* @param $instance_id
*
* @return bool|WC_Shipping_Meethod
* @return bool|WC_Shipping_Method
*/
public static function get_shipping_method( $instance_id ) {
$data_store = WC_Data_Store::load( 'shipping-zone' );

View File

@ -558,7 +558,7 @@ class WC_Tax {
// This will be per order shipping - loop through the order and find the highest tax class rate
$cart_tax_classes = WC()->cart->get_cart_item_tax_classes();
// If multiple classes are found, use the first one found unless a standard rate item is found. This will be the first listed in the 'additonal tax class' section.
// If multiple classes are found, use the first one found unless a standard rate item is found. This will be the first listed in the 'additional tax class' section.
if ( sizeof( $cart_tax_classes ) > 1 && ! in_array( '', $cart_tax_classes ) ) {
$tax_classes = self::get_tax_class_slugs();

View File

@ -94,7 +94,7 @@ class WC_CLI_REST_Command {
}
/**
* Peturns an ID of supported ID arguments (things like product_id, order_id, etc) that we should look for in addition to id.
* Returns an ID of supported ID arguments (things like product_id, order_id, etc) that we should look for in addition to id.
*
* @return array
*/

View File

@ -137,7 +137,7 @@ abstract class Abstract_WC_Order_Item_Type_Data_Store extends WC_Data_Store_WP i
public function save_item_data( &$item ) {}
/**
* Clear meta cachce.
* Clear meta cache.
*
* @param WC_Order_Item $item
*/

View File

@ -227,7 +227,7 @@ class WC_Product_Variable_Data_Store_CPT extends WC_Product_Data_Store_CPT imple
/**
* Create unique cache key based on the tax location (affects displayed/cached prices), product version and active price filters.
* DEVELOPERS should filter this hash if offering conditonal pricing to keep it unique.
* DEVELOPERS should filter this hash if offering conditional pricing to keep it unique.
*
* @since 3.0.0
* @param WC_Product

View File

@ -36,7 +36,7 @@ class WC_Email_Customer_Completed_Order extends WC_Email {
// Triggers for this email
add_action( 'woocommerce_order_status_completed_notification', array( $this, 'trigger' ), 10, 2 );
// Call parent constuctor
// Call parent constructor
parent::__construct();
}

View File

@ -48,7 +48,7 @@ class WC_Email_Customer_Refunded_Order extends WC_Email {
add_action( 'woocommerce_order_fully_refunded_notification', array( $this, 'trigger_full' ), 10, 2 );
add_action( 'woocommerce_order_partially_refunded_notification', array( $this, 'trigger_partial' ), 10, 2 );
// Call parent constuctor
// Call parent constructor.
parent::__construct();
}

View File

@ -49,7 +49,7 @@ class WC_Email extends WC_Settings_API {
* Default heading.
*
* Supported for backwards compatibility but we recommend overloading the
* get_default_x methods instead so localication can be done when needed.
* get_default_x methods instead so localization can be done when needed.
*
* @var string
*/
@ -59,7 +59,7 @@ class WC_Email extends WC_Settings_API {
* Default subject.
*
* Supported for backwards compatibility but we recommend overloading the
* get_default_x methods instead so localication can be done when needed.
* get_default_x methods instead so localization can be done when needed.
*
* @var string
*/

View File

@ -36,7 +36,7 @@ class WC_Product_CSV_Exporter extends WC_CSV_Batch_Exporter {
protected $enable_meta_export = false;
/**
* Which product types are beign exported.
* Which product types are being exported.
* @var array
*/
protected $product_types_to_export = array();

View File

@ -52,7 +52,7 @@ class Simplify_Constants
const API_BASE_SANDBOX_URL = 'https://sandbox.simplify.com/v1/api';
/**
* @var string OAUTH_BASE_URL URL for the oauth enpoint
* @var string OAUTH_BASE_URL URL for the oauth endpoint
*/
const OAUTH_BASE_URL = 'https://www.simplify.com/commerce/oauth';
}

View File

@ -36,7 +36,7 @@ class Simplify_Event extends Simplify_Object {
/**
* Creates an Event object
* @param array $hash A map of parameters; valid keys are:
* <dt><code>paylod</code></dt> <dd>The raw JWS payload. </dd> <strong>required</strong>
* <dt><code>payload</code></dt> <dd>The raw JWS payload. </dd> <strong>required</strong>
* <dt><code>url</code></dt> <dd>The URL for the webhook. If present it must match the URL registered for the webhook.</dd>
* @param $authentication Object that contains the API public and private keys. If null the values of the static
* Simplify::$publicKey and Simplify::$privateKey will be used.
@ -53,7 +53,7 @@ class Simplify_Event extends Simplify_Object {
$jsonObject = $paymentsApi->jwsDecode($hash, $authentication);
if ($jsonObject['event'] == null) {
throw new InvalidArgumentException("Incorect data in webhook event");
throw new InvalidArgumentException("Incorrect data in webhook event");
}
return $paymentsApi->convertFromHashToObject($jsonObject['event'], self::getClazz());

View File

@ -394,7 +394,7 @@ class Simplify_HTTP
break;
case 3: $s = $s . "=";
break;
default: throw new InvalidArgumentException('incorrecly formatted JWS payload');
default: throw new InvalidArgumentException('incorrectly formatted JWS payload');
}
return base64_decode(str_replace(array('-', '_'), array('+', '/'), $s));
}

View File

@ -471,7 +471,7 @@ abstract class WC_Product_Importer implements WC_Importer_Interface {
// Check if attribute handle variations.
if ( isset( $parent_attributes[ $attribute_name ] ) && ! $parent_attributes[ $attribute_name ]->get_variation() ) {
// Re-create the attribute to CRUD save and genarate again.
// Re-create the attribute to CRUD save and generate again.
$parent_attributes[ $attribute_name ] = clone $parent_attributes[ $attribute_name ];
$parent_attributes[ $attribute_name ]->set_variation( 1 );

View File

@ -228,7 +228,7 @@ class WC_Product_CSV_Importer extends WC_Product_Importer {
}
/**
* Parse reletive comma-delineated field and return product ID.
* Parse relative comma-delineated field and return product ID.
*
* @param string $field Field value.
* @return array

View File

@ -158,7 +158,7 @@ abstract class WC_Abstract_Legacy_Order extends WC_Data {
}
}
// Handly qty if set
// Handle qty if set.
if ( isset( $args['qty'] ) ) {
if ( $product->backorders_require_notification() && $product->is_on_backorder( $args['qty'] ) ) {
$item->add_meta_data( apply_filters( 'woocommerce_backordered_item_meta_name', __( 'Backordered', 'woocommerce' ) ), $args['qty'] - max( 0, $product->get_stock_quantity() ), true );

View File

@ -681,7 +681,7 @@ abstract class WC_Abstract_Legacy_Product extends WC_Data {
}
/**
* @deprected 3.0.0 Sync is taken care of during save - no need to call this directly.
* @deprecated 3.0.0 Sync is taken care of during save - no need to call this directly.
*/
public function grouped_product_sync() {
wc_deprecated_function( 'WC_Product::grouped_product_sync', '3.0' );

View File

@ -135,7 +135,7 @@ if ( ! class_exists( 'WC_Eval_Math', false ) ) {
return self::trigger( "illegal character '_'" ); // but not in the input expression
// ===============
} elseif ( ( in_array( $op, $ops ) or $ex ) and $expecting_op ) { // are we putting an operator on the stack?
if ( $ex ) { // are we expecting an operator but have a number/variable/function/opening parethesis?
if ( $ex ) { // are we expecting an operator but have a number/variable/function/opening parenthesis?
$op = '*';
$index--; // it's an implicit multiplication
}

View File

@ -283,7 +283,7 @@ class WC_Log_Handler_File extends WC_Log_Handler {
/**
* Rotate log files.
*
* Logs are rotatated by prepending '.x' to the '.log' suffix.
* Logs are rotated by prepending '.x' to the '.log' suffix.
* The current log plus 10 historical logs are maintained.
* For example:
* base.9.log -> [ REMOVED ]

View File

@ -6,7 +6,7 @@ if ( ! defined( 'ABSPATH' ) ) {
/**
* Flat Rate Shipping Method.
*
* This class is here for backwards commpatility for methods existing before zones existed.
* This class is here for backwards compatibility for methods existing before zones existed.
*
* @deprecated 2.6.0
* @version 2.4.0

View File

@ -7,7 +7,7 @@ if ( ! defined( 'ABSPATH' ) ) {
/**
* Free Shipping Method.
*
* This class is here for backwards commpatility for methods existing before zones existed.
* This class is here for backwards compatibility for methods existing before zones existed.
*
* @deprecated 2.6.0
* @version 2.4.0

View File

@ -6,7 +6,7 @@ if ( ! defined( 'ABSPATH' ) ) {
/**
* International Delivery - Based on the Flat Rate Shipping Method.
*
* This class is here for backwards commpatility for methods existing before zones existed.
* This class is here for backwards compatibility for methods existing before zones existed.
*
* @deprecated 2.6.0
* @version 2.4.0

View File

@ -7,7 +7,7 @@ if ( ! defined( 'ABSPATH' ) ) {
/**
* Local Delivery Shipping Method.
*
* This class is here for backwards commpatility for methods existing before zones existed.
* This class is here for backwards compatibility for methods existing before zones existed.
*
* @deprecated 2.6.0
* @version 2.3.0

View File

@ -7,7 +7,7 @@ if ( ! defined( 'ABSPATH' ) ) {
/**
* Local Pickup Shipping Method.
*
* This class is here for backwards commpatility for methods existing before zones existed.
* This class is here for backwards compatibility for methods existing before zones existed.
*
* @deprecated 2.6.0
* @version 2.3.0

View File

@ -39,7 +39,7 @@ class WC_Shortcode_Checkout {
return;
}
// Backwards compat with old pay and thanks link arguments
// Backwards compatibility with old pay and thanks link arguments
if ( isset( $_GET['order'] ) && isset( $_GET['key'] ) ) {
wc_deprecated_argument( __CLASS__ . '->' . __FUNCTION__, '2.1', '"order" is no longer used to pass an order ID. Use the order-pay or order-received endpoint instead.' );

View File

@ -27,7 +27,7 @@ abstract class WP_REST_Controller {
* Register the routes for the objects of the controller.
*/
public function register_routes() {
wc_doing_it_wrong( 'WP_REST_Controller::register_routes', __( 'The register_routes() method must be overriden', 'woocommerce' ), 'WPAPI-2.0' );
wc_doing_it_wrong( 'WP_REST_Controller::register_routes', __( 'The register_routes() method must be overridden', 'woocommerce' ), 'WPAPI-2.0' );
}
/**

View File

@ -139,7 +139,7 @@ if ( ! function_exists( 'register_rest_field' ) ) {
if ( ! function_exists( 'register_api_field' ) ) {
/**
* Backwards compat shim
* Backwards compatibility shim
*
* @param array|string $object_type
* @param string $attributes

View File

@ -223,7 +223,7 @@ function wc_get_order_types( $for = '' ) {
/**
* Get an order type by post type name.
* @param string post type name
* @return bool|array of datails about the order type
* @return bool|array of details about the order type
*/
function wc_get_order_type( $type ) {
global $wc_order_types;

View File

@ -1329,7 +1329,7 @@ if ( ! function_exists( 'woocommerce_related_products' ) ) {
$args = wp_parse_args( $args, $defaults );
// Get visble related products then sort them at random.
// Get visible related products then sort them at random.
$args['related_products'] = array_filter( array_map( 'wc_get_product', wc_get_related_products( $product->get_id(), $args['posts_per_page'], $product->get_upsell_ids() ) ), 'wc_products_array_filter_visible' );
// Handle orderby.
@ -1371,7 +1371,7 @@ if ( ! function_exists( 'woocommerce_upsell_display' ) ) {
$orderby = apply_filters( 'woocommerce_upsells_orderby', isset( $args['orderby'] ) ? $args['orderby'] : $orderby );
$limit = apply_filters( 'woocommerce_upsells_total', isset( $args['posts_per_page'] ) ? $args['posts_per_page'] : $limit );
// Get visble upsells then sort them at random, then limit result set.
// Get visible upsells then sort them at random, then limit result set.
$upsells = wc_products_array_orderby( array_filter( array_map( 'wc_get_product', $product->get_upsell_ids() ), 'wc_products_array_filter_visible' ), $orderby, $order );
$upsells = $limit > 0 ? array_slice( $upsells, 0, $limit ) : $upsells;

View File

@ -17,7 +17,7 @@ if ( ! defined( 'ABSPATH' ) ) {
/**
* Prevent any user who cannot 'edit_posts' (subscribers, customers etc) from seeing the admin bar.
*
* Note: get_option( 'woocommerce_lock_down_admin', true ) is a deprecated option here for backwards compat. Defaults to true.
* Note: get_option( 'woocommerce_lock_down_admin', true ) is a deprecated option here for backwards compatibility. Defaults to true.
*
* @access public
* @param bool $show_admin_bar
@ -320,7 +320,7 @@ function wc_modify_editable_roles( $roles ) {
add_filter( 'editable_roles', 'wc_modify_editable_roles' );
/**
* Modify capabiltiies to prevent non-admin users editing admin users.
* Modify capabilities to prevent non-admin users editing admin users.
*
* $args[0] will be the user being edited in this case.
*

View File

@ -62,7 +62,7 @@ class WC_Widget_Layered_Nav_Filters extends WC_Widget {
$link = add_query_arg( 'max_price', wc_clean( $_GET['max_price'] ), $link );
}
// Orderby
// Order by
if ( isset( $_GET['orderby'] ) ) {
$link = add_query_arg( 'orderby', wc_clean( $_GET['orderby'] ), $link );
}

View File

@ -331,7 +331,7 @@ class WC_Widget_Layered_Nav extends WC_Widget {
$link = add_query_arg( 'max_price', wc_clean( $_GET['max_price'] ), $link );
}
// Orderby
// Order by
if ( isset( $_GET['orderby'] ) ) {
$link = add_query_arg( 'orderby', wc_clean( $_GET['orderby'] ), $link );
}

View File

@ -56,7 +56,7 @@ class WC_Widget_Rating_Filter extends WC_Widget {
$link = add_query_arg( 'max_price', wc_clean( $_GET['max_price'] ), $link );
}
// Orderby
// Order by
if ( isset( $_GET['orderby'] ) ) {
$link = add_query_arg( 'orderby', wc_clean( $_GET['orderby'] ), $link );
}