Improve text in idle message

This commit is contained in:
Juerd Waalboer 2023-01-19 02:31:52 +01:00
parent 16d530ae16
commit 2bbaf20366

View file

@ -16,9 +16,11 @@ sub hook_prompt_idle($class, $cart, $plugin, $seconds, $readline, @) {
$readline->replace_line("");
$readline->redisplay;
my $verb = $cart->sum < 0 ? "pay" : "finish";
my $help = $cart->entries('refuse_checkout')
? "Enter 'abort' to abort."
: "Enter username to pay/finish or 'abort' to abort.";
: "Enter username to $verb or 'abort' to abort.";
print "\e[33;2;1mTransaction incomplete.\e[0m $help\n";
$readline->restore_prompt;