EPV expects an array literal to be used in the array_merge() call in language files:
$lang = array_merge($lang, [
// some lang vars here
]);
When passing an array variable instead, a fatal error is thrown:
$strings = array(
// some lang vars here
);
$lang = array_merge($lang, $strings);
EPV expects an array literal to be used in the
array_merge()call in language files:When passing an array variable instead, a fatal error is thrown: