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)" ); }