More help wording tweaks.

This commit is contained in:
Storm Dragon 2018-07-23 14:03:50 -04:00
parent b25e236a2e
commit 6dcf4348ee
4 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@ class command():
def shutdown(self): def shutdown(self):
pass pass
def getDescription(self): def getDescription(self):
return _('export the current fenrir clipboard to X clipboard') return _('export the current fenrir clipboard to the graphical clipboard')
def run(self): def run(self):
_thread.start_new_thread(self._threadRun , ()) _thread.start_new_thread(self._threadRun , ())

View File

@ -18,7 +18,7 @@ class command():
def shutdown(self): def shutdown(self):
pass pass
def getDescription(self): def getDescription(self):
return _("imports the current X clipboard to Fenrir's clipboard") return _("imports the graphical clipboard to Fenrir's clipboard")
def run(self): def run(self):
_thread.start_new_thread(self._threadRun , ()) _thread.start_new_thread(self._threadRun , ())

View File

@ -16,7 +16,7 @@ class command():
def shutdown(self): def shutdown(self):
pass pass
def getDescription(self): def getDescription(self):
return _('set review cursor to end of current line and display the content') return _('Move the review cursor to the first character on the current line')
def run(self): def run(self):
cursorPos = self.env['runtime']['cursorManager'].getReviewOrTextCursor() cursorPos = self.env['runtime']['cursorManager'].getReviewOrTextCursor()

View File

@ -15,7 +15,7 @@ class command():
def shutdown(self): def shutdown(self):
pass pass
def getDescription(self): def getDescription(self):
return _('set review cursor to end of current line and display the content') return _('Move the review cursor to the last character on the current line')
def run(self): def run(self):
cursorPos = self.env['runtime']['cursorManager'].getReviewOrTextCursor() cursorPos = self.env['runtime']['cursorManager'].getReviewOrTextCursor()