How to Localize Site-Map Data
2010-10-06
Microsoft MSDN:
How to: Localize Site-Map Data
Actually it is the same as you create a Global resource file under App_GlobalResources folder, and put the site map node text content to the resource file.
In site map file:
set:
<siteMap enableLocalization="true">
and change:
<siteMapNode url="~/Default.aspx" title="$resources:SiteText,StrHome" description="" roles="*" >
</siteMapNode>
In Global resource file, add the following:
StrHome Home
Done!