The title of the Forward page is not wrapped in the t() function. Therefore it is not translatable.

Changing line 522 in forward.module from:

drupal_set_title(variable_get('forward_email_title', 'Forward this page to a friend'));

to this:

drupal_set_title(t(variable_get('forward_email_title', 'Forward this page to a friend')));

Comments

john.oltman’s picture

Assigned: Unassigned » john.oltman

Fix committed, please pull down the latest 7.x DEV release after it finishes building and let me know if it works now. Also got the ePostcard title while I was in there.

john.oltman’s picture

Status: Active » Needs review
marty2081’s picture

Title translation works now.

john.oltman’s picture

Status: Needs review » Closed (fixed)