translation

This commit is contained in:
Julian Jöris 2012-02-02 11:22:49 +01:00
parent daaa7e14c9
commit bbb0a98b4e
5 changed files with 380 additions and 341 deletions

View File

@ -57,7 +57,7 @@ class WC_Cheque extends WC_Payment_Gateway {
'title' => __( 'Customer Message', 'woocommerce' ),
'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' ),
'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' )
)
);

View File

@ -14,7 +14,7 @@ class WC_Local_Delivery extends WC_Shipping_Method {
function __construct() {
$this->id = 'local-delivery';
$this->method_title = __('Local Delivery', 'woothemes');
$this->method_title = __('Local Delivery', 'woocommerce');
// Load the form fields.
$this->init_form_fields();

View File

@ -14,7 +14,7 @@ class WC_Local_Pickup extends WC_Shipping_Method {
function __construct() {
$this->id = 'local-pickup';
$this->method_title = __('Local Pickup', 'woothemes');
$this->method_title = __('Local Pickup', 'woocommerce');
// Load the form fields.
$this->init_form_fields();

File diff suppressed because it is too large Load Diff