In the condition merge text and variable.

How can I write: If battery is bigger than 50%, then call back "battery is <X%>" else call back "battery isn't <X%>"

This not working for me:

$if( bi(level) > 50, "battery is bi(level)", "battery isn't bi(level)" )$

$if(bi(level) > 50, "battery is " bi(level), "battery isn't " bi(level))$

It also does not work for me :(