Fix: Reject lines shouldn't be translated

This commit is contained in:
Jim Miller 2013-12-02 12:48:44 -06:00
parent 17b6d090db
commit e217c6fe23

View file

@ -136,7 +136,8 @@ class RejectUrlEntry:
def fullnote(self):
retval = ""
if self.title and self.auth:
retval = retval + _("%s by %s")%(self.title,self.auth)
# don't translate--ends up being saved and confuses regex above.
retval = retval + "%s by %s"%(self.title,self.auth)
if self.note:
retval = retval + " - "