2011-11-23 00:07:50 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Strings
|
2012-08-14 17:37:50 +00:00
|
|
|
*
|
2011-11-23 00:07:50 +00:00
|
|
|
* This file holds localisation strings that are scanned by localisation plugins. It is not included anywhere.
|
|
|
|
*
|
|
|
|
* @author WooThemes
|
2012-12-28 10:54:02 +00:00
|
|
|
* @category i18n
|
|
|
|
* @package WooCommerce/i18n
|
|
|
|
* @version 2.0.0
|
2011-11-23 00:07:50 +00:00
|
|
|
*/
|
|
|
|
|
2012-10-15 10:57:58 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
|
2011-11-23 00:07:50 +00:00
|
|
|
// Order Status Terms
|
2012-10-16 09:45:33 +00:00
|
|
|
__( 'pending', 'woocommerce' );
|
|
|
|
__( 'failed', 'woocommerce' );
|
|
|
|
__( 'on-hold', 'woocommerce' );
|
|
|
|
__( 'processing', 'woocommerce' );
|
|
|
|
__( 'completed', 'woocommerce' );
|
|
|
|
__( 'refunded', 'woocommerce' );
|
|
|
|
__( 'cancelled', 'woocommerce' );
|