Translating statuses
-
Hi,
is it possible change code in wc-local-pickup-admin.phpfrom
232 if ( 'wc-processing' === $key ) { 233 $new_order_statuses['wc-ready-pickup'] = 'Ready for Pickup'; 234 } 235 if ( 'wc-processing' === $key ) { 236 $new_order_statuses['wc-pickup'] = 'Picked up'; 237 }
to
232 if ( 'wc-processing' === $key ) { 233 $new_order_statuses['wc-ready-pickup'] = __( 'Ready for Pickup', 'advanced-local-pickup-for-woocommerce' ); 234 } 235 if ( 'wc-processing' === $key ) { 236 $new_order_statuses['wc-pickup'] = __( 'Picked up', 'advanced-local-pickup-for-woocommerce' ); 237 }
and add ‘Ready for Pickup’ to translations?
Thanks.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Translating statuses’ is closed to new replies.