def title(self): """Title for the feed""" return _('Featured Add-ons :: %s') % page_name(self.app)
def title(self, category): """Title for the feed as a whole""" name = category.name if category else _('Extensions') return u'%s :: %s' % (name, page_name(self.request.APP))
def title(self): """Title for the feed as a whole""" base = _('Search Tools') if self.category: base = u'%s :: %s' % (self.category.name, base) return u'%s :: %s' % (base, page_name(self.request.APP))
def title(self, c): app = page_name(self.request.APP) # L10n: {0} is a collection name, {1} is 'Add-ons for <app>'. return _(u'{0} :: Collections :: {1}').format(c.name, app)
def title(self, c): app = page_name(self.request.APP) # L10n: {0} is 'Add-ons for <app>'. return _(u'Collections :: %s') % app