Example #1
0
 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))
Example #2
0
 def title(self):
     """Title for the feed"""
     return _('Featured Add-ons :: %s') % page_name(self.app)
Example #3
0
 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))
Example #4
0
 def title(self, c):
     app = page_name(self.request.APP)
     # L10n: {0} is 'Add-ons for <app>'.
     return _(u"Collections :: %s") % app
Example #5
0
 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)
Example #6
0
 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))
Example #7
0
 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))
Example #8
0
 def title(self):
     """Title for the feed"""
     return _('Featured Add-ons :: %s') % page_name(self.app)
Example #9
0
 def title(self, c):
     app = page_name(self.request.APP)
     # L10n: {0} is a collection name, {1} is 'Add-ons for <app>'.
     return ugettext(u'{0} :: Collections :: {1}').format(c.name, app)
Example #10
0
 def title(self, c):
     app = page_name(self.request.APP)
     # L10n: {0} is 'Add-ons for <app>'.
     return ugettext(u'Collections :: %s') % app