From 7990c43371f16ba554409aba40134b2dbdcfa0a5 Mon Sep 17 00:00:00 2001 From: Juerd Waalboer Date: Sun, 17 Nov 2024 01:10:58 +0100 Subject: [PATCH] given/take: Change verb tense When the transaction is still pending, the past tense is incorrect. This is not relevant for the contras, because those descriptions are only displayed in logs, after the fact. --- plugins/give | 2 +- plugins/take | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/give b/plugins/give index 2c9861e..efccf28 100644 --- a/plugins/give +++ b/plugins/give @@ -33,7 +33,7 @@ sub reason :Tab(whatevah) ($self, $cart, $input, @) { my $reason = $input =~ /^x?$/ ? "" : " ($input)"; $cart - ->add(-$amount, "Given to $beneficiary" . $reason) + ->add(-$amount, "Give to $beneficiary" . $reason) ->add_contra($beneficiary, +$amount, "Received from \$you" . $reason); return ACCEPT; diff --git a/plugins/take b/plugins/take index 9d62d11..e15306d 100644 --- a/plugins/take +++ b/plugins/take @@ -54,7 +54,7 @@ sub reason :Tab(bbq) ($self, $cart, $reason, @) { my $total = $self->{total}; my $users = join '/', @users; - my $entry = $cart->add($total, "Taken from $users ($reason)", { is_take => 1 }); + my $entry = $cart->add($total, "Take from $users ($reason)", { is_take => 1 }); for my $user (@users) { $entry->add_contra( $user, -$each, "Taken by \$you ($reason)" ); }