Using XSLT we are trying to generate some HTML for localization using from po files, the problem is that it is unable to pick the localized text, e.g. the entry in xsl file:
<xsl:value-of select="normalize-space(t:gettext('Get real time {0} Posts',$name))" />
and the entry in the po file for the same:
msgid "Get real time {0} Posts"
msgstr "إحصل على الإعلانات من {0} في الوقت الحقيقي"
This is always displaying the msgid, I suspect this is something to do with the usage of getText().
Any help on the same is highly appreciated.