There is a character missing on line 266 in the
/cache/smarty/templates_c/2bf828e8f2aee941eeae0d40e6def8ac762531de_0.file.category.tpl.php
A "t" is missing in
echo _("Select a date");
It should be
echo _t("Select a date");
This doesn't give any errors, but the engine doesn't recognise it for translation purposes.
There is a character missing on line 266 in the
/cache/smarty/templates_c/2bf828e8f2aee941eeae0d40e6def8ac762531de_0.file.category.tpl.php
A "t" is missing in
````
echo _("Select a date");
````
It should be
````
echo _t("Select a date");
````
This doesn't give any errors, but the engine doesn't recognise it for translation purposes.
edited Mar 11 '17 at 11:03 am