review/messages.py @ e91ac244e5ad

Add the ability to overwrite signoffs.
author Steve Losh <steve@stevelosh.com>
date Sun, 04 Oct 2009 22:08:06 -0400
parents 1280679a055d
children 7e437c5261bb
#!/usr/bin/env python

INIT_START = '''\
initializing the code review data store and config
'''

INIT_SUCCESS = '''\
the review data has been initialized
run "hg commit .hgreview -m'initialize code review'" to record it permanently
'''

INIT_EXISTS_COMMITTED = '''\
the review data was already initialized by someone else
'''

INIT_EXISTS_UNCOMMITTED = '''\
the review data has already been initialized, but is not recorded!
run "hg commit .hgreview -m'initialize code review'" to record it permanently
'''

COMMENT_REQUIRES_MESSAGE = '''\
a message must be provided to add a comment!
'''

SIGNOFF_REQUIRES_MESSAGE = '''\
a message must be provided to sign off!
'''

SIGNOFF_OPINION_CONFLICT = '''\
cannot sign off as both --yes and --no!
'''

SIGNOFF_EXISTS = '''\
you have already signed off on this changeset (use --force to overwrite)!
'''

REVIEW_LOG_CSET = '''\
changeset: %d:%s
'''

REVIEW_LOG_AUTHOR = '''\
author:    %s
'''

REVIEW_LOG_SUMMARY = '''\
summary:   %s

'''

REVIEW_LOG_SIGNOFFS = '''\
signoffs:  %d signoffs
'''

REVIEW_LOG_COMMENTS = '''\
comments:  %d comments from %d authors

'''


COMMIT_COMMENT = '''Add a comment on changeset %s'''
COMMIT_SIGNOFF = '''Sign off on changeset %s'''
DELETE_SIGNOFF = '''Remove sign off on changeset %s'''