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