Download & Extend

Make the $group->label translatebale

Project:Multistep
Version:7.x-1.x-dev
Component:Code
Category:feature request
Priority:minor
Assigned:Unassigned
Status:active

Issue Summary

in multistep.module i just changed in line 282

<?php
  $prefix
.= "<h1>$group->label</h1>";
?>

to

<?php
  $prefix
.= "<h1>" . t($group->label) . "</h1>";
?>

may this is usefull for multilingual sites.

cheers, N20

nobody click here