19 lines
440 B
PHP
19 lines
440 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
|
|
*/
|
|
|
|
// Order Status Terms
|
|
__('pending', 'woothemes');
|
|
__('failed', 'woothemes');
|
|
__('on-hold', 'woothemes');
|
|
__('processing', 'woothemes');
|
|
__('completed', 'woothemes');
|
|
__('refunded', 'woothemes');
|
|
__('cancelled', 'woothemes'); |