22 lines
555 B
PHP
22 lines
555 B
PHP
<?php
|
|
/**
|
|
* Strings
|
|
*
|
|
* This file holds localisation strings that are scanned by localisation plugins. It is not included anywhere.
|
|
*
|
|
* @author WooThemes
|
|
* @category i18n
|
|
* @package WooCommerce/i18n
|
|
* @version 2.0.0
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
// Order Status Terms
|
|
__( 'pending', 'woocommerce' );
|
|
__( 'failed', 'woocommerce' );
|
|
__( 'on-hold', 'woocommerce' );
|
|
__( 'processing', 'woocommerce' );
|
|
__( 'completed', 'woocommerce' );
|
|
__( 'refunded', 'woocommerce' );
|
|
__( 'cancelled', 'woocommerce' ); |