On Sat, Apr 26, 2008 at 5:59 PM, Radim Novotny <[EMAIL PROTECTED]> wrote: > from zope.i18n import translate > translated_string = translate(_(u"N/A"), context=self.context)
No, use the request for the context; in a view that'd be self.request: translate(_(u'N/A'), context=self.request) -- Martijn Pieters _______________________________________________ Product-Developers mailing list [email protected] http://lists.plone.org/mailman/listinfo/product-developers
