When using angular -translate, I encounter an unusual problem (without translation), with interpolation options as date objects.
But first, first: here is the pluker.
.
Using the disinfection strategy "escapeParameters" in the translation provider,
why with json is formatted as follows:
$scope.title = { day: 'tomorrow', today: new Date() };
the results of my translations are always {} using compressed forms
{{'VARIABLE_REPLACEMENT' | translate : title}}
<translate="VARIABLE_REPLACEMENT" translate-values="{ day: 'tomorrow', today: title.today }">
As you can see, other ways to use angular translation seem to work fine. It's some kind of mistake? Or am I doing something wrong?