From a514aabcb15033f52ae2fc2f37df1e5bba886b0f Mon Sep 17 00:00:00 2001 From: Michael McClimon Date: Fri, 17 Sep 2021 20:33:30 -0400 Subject: [PATCH] status reactor: fix agreement with they pronouns Sigh, I thought so hard about this, but English wins again. --- lib/Synergy/Reactor/Status.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Synergy/Reactor/Status.pm b/lib/Synergy/Reactor/Status.pm index 3cb10151..3aec4e29 100644 --- a/lib/Synergy/Reactor/Status.pm +++ b/lib/Synergy/Reactor/Status.pm @@ -204,8 +204,9 @@ sub _business_hours_status ($self, $event, $user) { my $trailer = ''; if ($user->is_wfh_on($dow)) { - $trailer = sprintf q{, and usually %s works from home on %ss}, + $trailer = sprintf q{, and usually %s work%s from home on %ss}, $user->they, + $user->they eq 'they' ? '' : 's', # sigh, english day_name_from_abbr($dow); }