Closed (works as designed)
Project:
Webform Block
Version:
6.x-1.1
Component:
Code
Priority:
Minor
Category:
Feature request
Assigned:
Reporter:
Created:
17 Mar 2010 at 23:45 UTC
Updated:
9 Mar 2011 at 02:09 UTC
I have done for me this change in file webformblock.module for the title block can be translated
line 131
$block_subject = $node->title;
to
$block_subject = t($node->title);
It would be nice to be included in future versions.
Comments
Comment #1
buddaThe block title comes from the node title, so you should translate your nodes title and the block will inherit this. Or is that not working for you?
Comment #2
budda