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

budda’s picture

Status: Active » Postponed (maintainer needs more info)

The 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?

budda’s picture

Status: Postponed (maintainer needs more info) » Closed (works as designed)