Hi,
it's neccessary joining strings like this?
<div class="head3">${uiLabelMap.CommonNo}
${uiLabelMap.ProductReviewsPendingApproval}</div>It's not possible translate it to slovak. "No" in english means "No" (as opposite to yes) and "Nothing" too, but slovak language hasn't similar word. Translation of "no" is dependent on word after "no" ( http://en.wikipedia.org/wiki/Slovak_language ) Solution is: <div class="head3">${uiLabelMap.NoProductReviewsPendingApproval}</div> in place of <div class="head3">${uiLabelMap.CommonNo} ${uiLabelMap.ProductReviewsPendingApproval}</div> Thanks Jan Valkovic
