Path to node in language files where translation can be found.

Namespace:  EPiServer.PlugIn
Assembly:  EPiServer (in EPiServer.dll) Version: 6.0.530.0

Syntax

C#
public string LanguagePath { get; set; }

Remarks

Set this property to the path of the XML element that contains the displayname and description elements in one of your language files (an xml file in the /lang directory.)

Examples

For a LanguagePath with the value "/myshop/plugin/ShopPluginTree/" the XML should look something like this:

CopyXML
<languages>
  <language name="English" id="EN">
    <myshop>
      <plugin>
        <ShopPluginTree>
          <displayname>My shop</displayname>
          <description>Description of shopping tab</description>
        </ShopPluginTree>
      </plugin>
    </myshop>
  </language>
</languages>

See Also