I created a menu item to set "All languages", and register translated string for the menu item on the Translate interface page. Then I selected above menu item at a rule of Node breadcrumb settings.
However menu items is not translated at breadcrumbs.
Note
I modified node_breadcrumb.module file as following, and now menu item is translated. but I don't know the modified is correct.
//array_unshift($breadcrumb, l($item['link_title'], $item['link_path']));
array_unshift($breadcrumb, l($item['title'], $item['link_path']));
Comments
Comment #1
HiroJP commentedComment #2
kirie commentedThis change worked for me too! Thanks!
Comment #3
kirie commentedBump