/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/log.py

  • Committer: Jonathan Riddell
  • Date: 2011-06-30 13:18:18 UTC
  • mto: This revision was merged to the branch mainline in revision 6003.
  • Revision ID: jriddell@canonical.com-20110630131818-t5cqxtjjyt1g3if9
apparantly we have no translation support

Show diffs side-by-side

added added

removed removed

Lines of Context:
320
320
    gpg_strategy = gpg.GPGStrategy(None)
321
321
    result = repo.verify_revision(rev_id, gpg_strategy)
322
322
    if result[0] == gpg.SIGNATURE_VALID:
323
 
        return i18n.gettext("valid signature from {0}").format(result[1])
 
323
        return "valid signature from {0}".format(result[1])
324
324
    if result[0] == gpg.SIGNATURE_KEY_MISSING:
325
 
        return i18n.gettext("unknown key {0}").format(result[1])
 
325
        return "unknown key {0}".format(result[1])
326
326
    if result[0] == gpg.SIGNATURE_NOT_VALID:
327
 
        return i18n.gettext("invalid signature!")
 
327
        return "invalid signature!"
328
328
    if result[0] == gpg.SIGNATURE_NOT_SIGNED:
329
 
        return i18n.gettext("no signature")
 
329
        return "no signature"
330
330
 
331
331
 
332
332
class LogGenerator(object):