I have custom message like this:
'options' => array(
'min' => $min,
'max' => $date->format('Y-m-d'),
'inclusive' => true,
'messages' => array(
Between::NOT_BETWEEN => "The input is not between '%min%' and '%max%', inclusively",
),
),
I put this string in .po
file and generate .mo
, but message won't translate. For all other messages without variables it's working fine.