I'm using Phalcon with Volt for my multilanguage application.
I've setup a translation file which contains the following variables:
'numbervalidation-field' => '%field% is a number',
'Teams' => 'Teams',
And this is how I print 'Teams is a number' correctly
<?php echo $t->_("numbervalidation-field", array("field" => $t->_('Teams'))); ?>
I just want to be able to print the same using volt, I've tried several things but nothing works, this was my latest attempt:
{{t['numbervalidation-field', ['field': t['Teams']]]}}
Help please, I couldn't find how to do this.