From 91ad9e2320c2dcaef477c639d92cd57532bbe920 Mon Sep 17 00:00:00 2001 From: Oliver Date: Wed, 5 Feb 2025 16:31:14 +0100 Subject: [PATCH] fix(custom-commands): rephrase strings in learning_time command --- omz-custom/custom_commands.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/omz-custom/custom_commands.sh b/omz-custom/custom_commands.sh index 6c0d3ef..9acf918 100755 --- a/omz-custom/custom_commands.sh +++ b/omz-custom/custom_commands.sh @@ -376,8 +376,8 @@ function learning_time() { fi if (( $(echo "$LEARNING_DIFF > 0" | bc -l) )); then - echo -e "Total learning time missing: ${GREEN}$LEARNING_DIFF hours${NC}" + echo -e "Total learning time not used: ${GREEN}$LEARNING_DIFF hours${NC}" else - echo -e "Total extra learning time: ${RED}${LEARNING_DIFF#-} hours${NC}" + echo -e "Total extra learning time used: ${RED}${LEARNING_DIFF#-} hours${NC}" fi }