Dear wordpress gurus,
I want to translate to german the order-processing email in woocommerce,
I hence used
elseif( $lang == “german” ) _e( “Blabla, some german stuff”,’woocommerce’ );
but that writes all on a single line, while I would like to have
Blabla,
some german stuff
I tried to use a standard php
echo “Blabla\n”;
echo “some german stuff\n”;
but the line breaks are still missing.
Any clue?
Thanks in advance,
Xavier