Strings. Closes #2385.

This commit is contained in:
Mike Jolley 2013-02-08 15:11:10 +00:00
parent 0272ad4e4c
commit f7dd3eea65
4 changed files with 6 additions and 7 deletions

View File

@ -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,
),

View File

@ -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

View File

@ -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' ),