예제 #1
0
파일: models.py 프로젝트: mccammos/zamboni
 def count_term(count):
     return ngettext('{0} email', '{0} emails', count).format(count)
예제 #2
0
파일: models.py 프로젝트: mccammos/zamboni
 def count_term(count):
     return ngettext('{0} tweet', '{0} tweets', count).format(count)
예제 #3
0
파일: models.py 프로젝트: mccammos/zamboni
 def count_term(count):
     return ngettext('{0} digg', '{0} diggs', count).format(count)
예제 #4
0
파일: models.py 프로젝트: mccammos/zamboni
 def count_term(count):
     return ngettext('{0} share', '{0} shares', count).format(count)
예제 #5
0
파일: models.py 프로젝트: mccammos/zamboni
 def count_term(count):
     """Render this service's share count with the right term."""
     return ngettext('{0} post', '{0} posts', count).format(count)