20 lines
485 B
PHP
20 lines
485 B
PHP
<?php
|
|
/**
|
|
* Strings
|
|
*
|
|
* This file holds localisation strings that are scanned by localisation plugins. It is not included anywhere.
|
|
*
|
|
* @author WooThemes
|
|
* @category Languages
|
|
* @package WooCommerce/Languages
|
|
* @version 1.6.4
|
|
*/
|
|
|
|
// Order Status Terms
|
|
__('pending', 'woocommerce');
|
|
__('failed', 'woocommerce');
|
|
__('on-hold', 'woocommerce');
|
|
__('processing', 'woocommerce');
|
|
__('completed', 'woocommerce');
|
|
__('refunded', 'woocommerce');
|
|
__('cancelled', 'woocommerce'); |