in my java gxt-project, I have a template, in which I have the following tpl tags, which decide, depending on a parenttitle, if the title has to be italics.
<tpl if="titleORG != """>
<tpl if="ParentTitleORG == """><i></tpl>
<b>{titleORG}<tpl if="subtitleORG != """>: {subtitleORG}</tpl></b>
<tpl if="ParentTitleORG == """></i></tpl>
</tpl>
<tpl if="titleEN != """>
<tpl if="officialTitleTranslation"> / {titleEN}<tpl if="subtitleEN != """>: {subtitleEN}</tpl></tpl>
</tpl>.
Lately, I got a ticket, whether it is possible to make title italics only, if they are not chinese or korean.
Any idea, how I can check for that?
Thanks,
Eric