Is there an example file somewhere, or can someone tell me how to create a multilingual description from a .resx file and use it in an indicator, for example?
I would like to create a .resx file in different languages or the property name and description and have it used automatically when loading the indicator, according to the PC language.
[Range(1, int.MaxValue), NinjaScriptProperty]
[Display(ResourceType = typeof(Custom.Resource), Name = "Period", GroupName = "NinjaScriptParameters", Order = 0, Description = "")]
public int Period
{
get; set;
}

Comment