fix(custom-commands): rephrase strings in learning_time command

This commit is contained in:
Oliver
2025-02-05 16:31:14 +01:00
parent 0c0390ae70
commit 91ad9e2320

View File

@@ -376,8 +376,8 @@ function learning_time() {
fi fi
if (( $(echo "$LEARNING_DIFF > 0" | bc -l) )); then 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 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 fi
} }