From 6dcf4348ee5ff98a72dfc88b41c42aac65702d24 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Mon, 23 Jul 2018 14:03:50 -0400 Subject: [PATCH] More help wording tweaks. --- .../commands/commands/export_clipboard_to_x.py | 2 +- .../commands/commands/import_clipboard_from_x.py | 2 +- .../commands/commands/review_line_first_char.py | 2 +- .../commands/commands/review_line_last_char.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/fenrirscreenreader/commands/commands/export_clipboard_to_x.py b/src/fenrirscreenreader/commands/commands/export_clipboard_to_x.py index ce4844cf..868efd75 100644 --- a/src/fenrirscreenreader/commands/commands/export_clipboard_to_x.py +++ b/src/fenrirscreenreader/commands/commands/export_clipboard_to_x.py @@ -18,7 +18,7 @@ class command(): def shutdown(self): pass 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): _thread.start_new_thread(self._threadRun , ()) diff --git a/src/fenrirscreenreader/commands/commands/import_clipboard_from_x.py b/src/fenrirscreenreader/commands/commands/import_clipboard_from_x.py index 5c27254e..c7fea60b 100644 --- a/src/fenrirscreenreader/commands/commands/import_clipboard_from_x.py +++ b/src/fenrirscreenreader/commands/commands/import_clipboard_from_x.py @@ -18,7 +18,7 @@ class command(): def shutdown(self): pass 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): _thread.start_new_thread(self._threadRun , ()) diff --git a/src/fenrirscreenreader/commands/commands/review_line_first_char.py b/src/fenrirscreenreader/commands/commands/review_line_first_char.py index 7d18692c..f6a616e1 100644 --- a/src/fenrirscreenreader/commands/commands/review_line_first_char.py +++ b/src/fenrirscreenreader/commands/commands/review_line_first_char.py @@ -16,7 +16,7 @@ class command(): def shutdown(self): pass 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): cursorPos = self.env['runtime']['cursorManager'].getReviewOrTextCursor() diff --git a/src/fenrirscreenreader/commands/commands/review_line_last_char.py b/src/fenrirscreenreader/commands/commands/review_line_last_char.py index 54854b39..8b4bad07 100644 --- a/src/fenrirscreenreader/commands/commands/review_line_last_char.py +++ b/src/fenrirscreenreader/commands/commands/review_line_last_char.py @@ -15,7 +15,7 @@ class command(): def shutdown(self): pass 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): cursorPos = self.env['runtime']['cursorManager'].getReviewOrTextCursor()