Strings. Closes #2385.
This commit is contained in:
parent
0272ad4e4c
commit
f7dd3eea65
|
@ -1011,7 +1011,7 @@ $woocommerce_settings['tax'] = apply_filters('woocommerce_tax_settings', array(
|
|||
'css' => 'min-width:150px;',
|
||||
'default' => 'title',
|
||||
'type' => 'select',
|
||||
'options' => array( '' => 'Shipping tax class based on cart items', 'standard' => __( 'Standard', 'woocommerce' ) ) + $classes_options,
|
||||
'options' => array( '' => __( 'Shipping tax class based on cart items', 'woocommerce' ), 'standard' => __( 'Standard', 'woocommerce' ) ) + $classes_options,
|
||||
'desc_tip' => true,
|
||||
),
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// Chosen, a Select Box Enhancer for jQuery and Protoype
|
||||
// by Patrick Filler for Harvest, http://getharvest.com
|
||||
//
|
||||
//
|
||||
// Version 0.9.11
|
||||
// Full source at https://github.com/harvesthq/chosen
|
||||
// Copyright (c) 2011 Harvest http://getharvest.com
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -94,13 +94,13 @@ class WC_Gateway_COD extends WC_Payment_Gateway {
|
|||
'title' => __( 'Description', 'woocommerce' ),
|
||||
'type' => 'textarea',
|
||||
'description' => __( 'Payment method description that the customer will see on your website.', 'woocommerce' ),
|
||||
'default' => 'Pay with cash upon delivery.',
|
||||
'default' => __( 'Pay with cash upon delivery.', 'woocommerce' ),
|
||||
),
|
||||
'instructions' => array(
|
||||
'title' => __( 'Instructions', 'woocommerce' ),
|
||||
'type' => 'textarea',
|
||||
'description' => __( 'Instructions that will be added to the thank you page.', 'woocommerce' ),
|
||||
'default' => 'Pay with cash upon delivery.'
|
||||
'default' => __( 'Pay with cash upon delivery.', 'woocommerce' )
|
||||
),
|
||||
'enable_for_methods' => array(
|
||||
'title' => __( 'Enable for shipping methods', 'woocommerce' ),
|
||||
|
|
Loading…
Reference in New Issue