I'm developing a website using the WPML plugin. And I would like to know which is the better option, or even the correct way to change classes or IDs between the languages.
Sample code:
<ul id="<?php _e('menu-topo'); ?>">
<ul id="<?php if ($lang = 'en') { echo "menu-topo-en"; } else { echo "menu-topo"; } ?>
I'm not sure that the _e function is supposed to be used this way so if someone could clarify this for me it would help me a lot, thanks.