I have a problem with my project. I'm using a Wordpress theme NOT native for WooCommerce. I'm implemented anyway WooCommerce, and it works great. Now, i have a problem. WooCommerce doesn't contain italian custom fields "C.F." and "P.IVA". So i've found a plugin that provides to create and configure these custom fields. The plugin is: http://netstarsolution.net/aggiungere-cf-e-pi-wc/.
The problem is that when i active qTranslate and WooCommerce-qTML (for WooCommerce), the custom fields inserted by "WooCommerce Aggiungere CF e P.IVA" not are translated. Only custom fields inserted with "WooCommerce Aggiungere CF e P.IVA" plugin doesn't works.
This is the part that's not translating:
// Billing First Name.
$fields['billing']['billing_first_name'] = array(
'label' => __( 'First Name', 'wcbcf' ),
'placeholder' => _x( 'First Name', 'placeholder', 'wcbcf' ),
'required' => true,
'class' => array( 'form-row-first' ),
);