removed "and presents it" from help strings.

This commit is contained in:
Storm Dragon 2018-08-01 21:03:04 -04:00
parent 1f7d0969fd
commit e28096b1c7
6 changed files with 6 additions and 6 deletions

View File

@ -15,7 +15,7 @@ class command():
def shutdown(self):
pass
def getDescription(self):
return _('Moves review to the next character and presents it')
return _('Moves review to the next character ')
def run(self):
self.env['runtime']['cursorManager'].enterReviewModeCurrTextCursor()

View File

@ -15,7 +15,7 @@ class command():
def shutdown(self):
pass
def getDescription(self):
return _('moves review to the next line and presents it')
return _('moves review to the next line ')
def run(self):
self.env['screen']['oldCursorReview'] = self.env['screen']['newCursorReview']

View File

@ -15,7 +15,7 @@ class command():
def shutdown(self):
pass
def getDescription(self):
return _('moves review to the next word and presents it')
return _('moves review to the next word ')
def run(self):
self.env['screen']['oldCursorReview'] = self.env['screen']['newCursorReview']

View File

@ -15,7 +15,7 @@ class command():
def shutdown(self):
pass
def getDescription(self):
return _('moves review to the previous character and presents it')
return _('moves review to the previous character ')
def run(self):
self.env['screen']['oldCursorReview'] = self.env['screen']['newCursorReview']

View File

@ -15,7 +15,7 @@ class command():
def shutdown(self):
pass
def getDescription(self):
return _('moves review to the previous line and presents it')
return _('moves review to the previous line ')
def run(self):
self.env['runtime']['cursorManager'].enterReviewModeCurrTextCursor()

View File

@ -15,7 +15,7 @@ class command():
def shutdown(self):
pass
def getDescription(self):
return _('moves review focus to the previous word and presents it')
return _('moves review focus to the previous word ')
def run(self):
self.env['runtime']['cursorManager'].enterReviewModeCurrTextCursor()