Need help to replace TRUE and FALSE with other words.

@ntinos83
The code-part with → “lang” ← was just an example

“lang” is anywhere declared in your (my) code.
You have first to define/declare → “lang”

How to do that???

Paste the orange marked additional CODE like shown below into your own one…

$w('#REPEATER').onItemReady(($item,itemData,index)=>{console.log(itemData);

Open the → CONSOLE ← and inspect the → itemData-RESULTS ←

Look for the results which will give you back the current used language.
Then you do the same declaration, like i did with → “inStock”…

let inStock = itemData.inStock;

…for lang (language).

Find the right result-data and declare a variable, the same way like already done with → “inStock”.

Also pay attention onto all the other given CONSOLE-LOGS, which will help you to understand your own CODE much better!