translation
This commit is contained in:
parent
daaa7e14c9
commit
bbb0a98b4e
|
@ -57,7 +57,7 @@ class WC_Cheque extends WC_Payment_Gateway {
|
||||||
'title' => __( 'Customer Message', 'woocommerce' ),
|
'title' => __( 'Customer Message', 'woocommerce' ),
|
||||||
'type' => 'textarea',
|
'type' => 'textarea',
|
||||||
'description' => __( 'Let the customer know the payee and where they should be sending the cheque to and that their order won\'t be shipping until you receive it.', 'woocommerce' ),
|
'description' => __( 'Let the customer know the payee and where they should be sending the cheque to and that their order won\'t be shipping until you receive it.', 'woocommerce' ),
|
||||||
'default' => 'Please send your cheque to Store Name, Store Street, Store Town, Store State / County, Store Postcode.'
|
'default' => __( 'Please send your cheque to Store Name, Store Street, Store Town, Store State / County, Store Postcode.', 'woocommerce' )
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ class WC_Local_Delivery extends WC_Shipping_Method {
|
||||||
|
|
||||||
function __construct() {
|
function __construct() {
|
||||||
$this->id = 'local-delivery';
|
$this->id = 'local-delivery';
|
||||||
$this->method_title = __('Local Delivery', 'woothemes');
|
$this->method_title = __('Local Delivery', 'woocommerce');
|
||||||
|
|
||||||
// Load the form fields.
|
// Load the form fields.
|
||||||
$this->init_form_fields();
|
$this->init_form_fields();
|
||||||
|
|
|
@ -14,7 +14,7 @@ class WC_Local_Pickup extends WC_Shipping_Method {
|
||||||
|
|
||||||
function __construct() {
|
function __construct() {
|
||||||
$this->id = 'local-pickup';
|
$this->id = 'local-pickup';
|
||||||
$this->method_title = __('Local Pickup', 'woothemes');
|
$this->method_title = __('Local Pickup', 'woocommerce');
|
||||||
|
|
||||||
// Load the form fields.
|
// Load the form fields.
|
||||||
$this->init_form_fields();
|
$this->init_form_fields();
|
||||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue