Recent Comments
  1. Re: Onclick event only accessible by a user with edit rights

    Dude, I love you! I just wasted 2 days trying to find the problem. I didn't even notice in the begin...

    --Alex

Localization Bugs for DNN 5.5.0

Posted in By Nicholas Lu

Find some bugs when I make DNN 5.5 Chinese language package.

In App_GlobalResources\GlobalResources.resx file, at line 171:

  <data name="//Admin//Tabs.String" xml:space="preserve">
    <value>Pages</value>
  </data>

should be

  <data name="//Admin//Pages.String" xml:space="preserve">
    <value>Pages</value>
  </data>

three more node should be added for “Admin” menu:

<data name="//Admin//GoogleAnalytics.String" xml:space="preserve">
    <value>Google Analytics</value>
</data>
<data name="//Admin//Taxonomy.String" xml:space="preserve">
    <value>Taxonomy</value>
</data>
<data name="//Admin//SearchEngineSiteMap.String" xml:space="preserve">
    <value>Search Engine SiteMap</value>
</data>
two more nodes should be added for “Host” menu:
<data name="//Host//Dashboard.String" xml:space="preserve">
    <value>Dashboard</value>
</data>
<data name="//Host//Marketplace.String" xml:space="preserve">
    <value>Marketplace</value>
</data>
    Comments are closed for this post, but if you have spotted an error or have additional info that you think should be in this post, feel free to contact me.