예제 #1
0
파일: feeds.py 프로젝트: ozten/zamboni
 def title(self):
     """Title for the feed"""
     return _('Featured Add-ons :: %s') % page_name(self.app)
예제 #2
0
파일: feeds.py 프로젝트: zuzelvp/olympia
 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))
예제 #3
0
파일: feeds.py 프로젝트: ozten/zamboni
 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))
예제 #4
0
파일: feeds.py 프로젝트: zuzelvp/olympia
 def title(self):
     """Title for the feed"""
     return _('Featured Add-ons :: %s') % page_name(self.app)
예제 #5
0
파일: feeds.py 프로젝트: zuzelvp/olympia
 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))
예제 #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))
예제 #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)
예제 #8
0
 def title(self, c):
     app = page_name(self.request.APP)
     # L10n: {0} is 'Add-ons for <app>'.
     return _(u'Collections :: %s') % app
예제 #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)
예제 #10
0
 def title(self, c):
     app = page_name(self.request.APP)
     # L10n: {0} is 'Add-ons for <app>'.
     return _(u'Collections :: %s') % app