From: Simon Tatham Date: Thu, 14 Dec 2023 19:05:33 +0000 (+0000) Subject: Change wording from 'Reply' to 'Send' for non-statuses. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=211b4bfdf3605619b0a4c3be74e6868453772e44;p=mastodonochrome.git Change wording from 'Reply' to 'Send' for non-statuses. You might be sending a message to the named user, but you're not _replying_ to anything of theirs. --- diff --git a/cursesclient.py b/cursesclient.py index 0f209ed..c6faa11 100644 --- a/cursesclient.py +++ b/cursesclient.py @@ -734,8 +734,12 @@ class ObjectFile(File): sl.keys.append(('-', 'Up')) else: sl.keys.append(('SPACE', 'More')) - if self.items_have_authors: + if self.items_are_statuses: sl.keys.append(('S', 'Reply')) + elif self.items_have_authors: + sl.keys.append(('S', 'Send')) + # FIXME: for when we can auto-shrink bottom line + # sl.keys.append(('E', 'Examine')) if self.items_are_statuses: sl.keys.append(('F', 'Fave')) sl.keys.append(('^B', 'Boost'))