Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sitemap multi language

Status
Not open for further replies.

Malchik

Programmer
Dec 8, 2001
148
CA
Hi,

I need some help to create a multi-language 'sitemap-menu' for my Intranet site. How can I change the menu lable based on the language selection (session variable). Here is my Sitemap for the site (in French). I know i cannot have two node pointing to the same page... so i am not sure how to proceed... any help will be greatly appreciated

<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns=" >
<siteMapNode url="" title="INTRANET" description="">


<siteMapNode url="" title="Communications" description="">
<siteMapNode url="" title="Nouvelles" description="Nouvelles d'intérêt général"/>
<siteMapNode url="" title="Information" description="Liste des numéros de téléphone des employés"/>
<siteMapNode url="" title="Suggestions" description="Boîte à suggestions"/>
</siteMapNode>

<siteMapNode url="" title="PunchClock" description="" >
<siteMapNode url="PunchEmployee.aspx" title="Employés" description="Gestion des employés dans le PunchClock"/>
<siteMapNode url="PunchProjects.aspx" title="Projets" description="Maintenance des projets dans le PunchClock"/>
<siteMapNode url="PunchReports.aspx" title="Rapports" description="Consultation des rapports"/>

<siteMapNode url="" title="Outils" description="">
<siteMapNode url="PunchImportation.aspx" title="Importation" description="Importation des nouveaux employés (Excel)"/>
<siteMapNode url="PunchExtraction.aspx" title="Extraction" description="Extraction des heures (DelTek)"/>
<siteMapNode url="PunchExtractionConfig.aspx" title="Configuration de l'extraction des heure (DelTek)" description=""/>
</siteMapNode>
</siteMapNode>


<siteMapNode url="" title="RH" description="">
<siteMapNode url="" title="Formulaires" description="">
<siteMapNode url="HRNewEmployeeForm.aspx" title="Formulaire pour nouvel employé" description="Formulaire en-ligne"/>
<siteMapNode url="" title="Documents pour nouvel employé" description="Documents à remettre au nouvel employé"/>
</siteMapNode>
</siteMapNode>

<siteMapNode url="" title="Admin" description="">
<siteMapNode url="LanguageChangeE.aspx" title="English" description="Change for English language"/>
<siteMapNode url="LanguageChangeF.aspx" title="Français" description="Changer pour la langue française"/>
<siteMapNode url="AdmLogOff.aspx" title="Déconnecter" description="Se déconnecter du site"/>
<siteMapNode url="AdmUsers.aspx" title="Usagers" description="Gestion des usagers"/>
</siteMapNode>


</siteMapNode>

</siteMap>


Mal'chik [bigglasses]
 
research the localization and globalization namespace objects. they are responsible for language/culture presentation.

I haven't used these objects before, so other than an elementray understanding of what they do, I don't know how to use them specifically.

Jason Meckley
Programmer
Specialty Bakers, Inc.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top