~bryce/inkscape-web/projects-pages

« back to all changes in this revision

Viewing changes to person/views.py

  • Committer: Maren Hachmann
  • Date: 2016-03-01 01:33:13 UTC
  • Revision ID: removemarenhachmannthis@yahoo.com-20160301013313-4k5e6wg8hwua5woc
improve translatability of lots of strings

Show diffs side-by-side

added added

removed removed

Lines of Context:
173
173
        team.watchers.add(user)
174
174
        if self.mailing_list_modified(team, user):
175
175
            return messages.info(self.request, _("Now watching this team and subscribed to it's mailing list."))
176
 
        messages.info(self.request, _("Now watching this team"))
 
176
        messages.info(self.request, _("Now watching this team."))
177
177
 
178
178
class UnwatchTeam(AddMember):
179
179
    def action(self, team, user, actor=None):
180
180
        team.watchers.remove(user)
181
181
        if self.mailing_list_modified(team, user):
182
182
            return messages.info(self.request, _("No longer watching this team or it's mailing list."))
183
 
        messages.info(self.request, _("No longer watching this team"))
 
183
        messages.info(self.request, _("No longer watching this team."))
184
184