HeaderMenu control

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 years ago
Hello,

I'd like to customize the default menu from :

home page, new products, search, my account, blog, contact us  
to
Accueil, témoignages, devenir distributeur, articles de santé, contact infos
(it's french but should be also localized to english)

can someone help me with the steps to get this resolved ? thx.
13 years ago
1) Your must download English Language Pack at:
https://www.nopcommerce.com/extensions/1/languages.aspx

2) and rename custom fields
13 years ago
and you can merge multiple languages. use WinMerge program.
13 years ago
Katavary wrote:
1) Your must download English Language Pack at:
https://www.nopcommerce.com/extensions/1/languages.aspx

2) and rename custom fields



I'm not sure i understand, isn't the english pack already installed with the default nopversion ?

    <ul>
        <li><a href="<%=CommonHelper.GetStoreLocation()%>">
            <%=GetLocaleResourceString("Content.HomePage")%></a> </li>
        <% if (ProductManager.RecentlyAddedProductsEnabled)
           { %>
        <li><a href="<%=Page.ResolveUrl("~/recentlyaddedproducts.aspx")%>">
            <%=GetLocaleResourceString("Products.NewProducts")%></a> </li>
        <%} %>
        <li><a href="<%=Page.ResolveUrl("~/search.aspx")%>">
            <%=GetLocaleResourceString("Search.Search")%></a> </li>
        <li><a href="<%=Page.ResolveUrl("~/account.aspx")%>">
            <%=GetLocaleResourceString("Account.MyAccount")%></a> </li>
        <% if (BlogManager.BlogEnabled)
           { %>
        <li><a href="<%=Page.ResolveUrl("~/blog.aspx")%>">
            <%=GetLocaleResourceString("Blog.Blog")%></a> </li>
        <%} %>
        <% if (ForumManager.ForumsEnabled)
           { %>
        <li><a href="<%= SEOHelper.GetForumMainUrl()%> ">
            <%=GetLocaleResourceString("Forum.Forums")%></a></li>
        <%} %>
        <li><a href="<%=Page.ResolveUrl("~/contactus.aspx")%>">
            <%=GetLocaleResourceString("ContactUs.ContactUs")%></a> </li>

           <li><a href="<%=Page.ResolveUrl("~/temoignages.aspx")%>">
            <%=GetLocaleResourceString("Temoignages")%></a> </li>

    </ul>

for instance the link temoignages appear but is not translated !
how to rename each one, i mean having custom names... not blog, new products etc. because I will add custom pages aspx pages.

and then i want each item in the custom menu to be translated in english when users click on the english flag?

http://herbatonic.com/

thx.
13 years ago
Hi have a read at these topics

editing resource strings  https://www.nopcommerce.com/boards/topic.aspx?topicid=3590    

adding resource strings  https://www.nopcommerce.com/boards/topic.aspx?topicid=3051


you will also need to apply the principle to your french language  pack
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.