1. Hello,
    I want to use language messages
    Code:
    lang.RegisterMessages({
        test: 'test2',
    }, this.Plugin, 'en');
    But I'm getting error:
    Code:
    TypeError No public methods with the specified arguments were found.
    Regards!
     
  2. Wulf

    Wulf Community Admin

    Code:
    var type = System.Collections.Generic.Dictionary(System.String, System.String);
    var dictionary = new type();
    dictionary.Add("jskey", "jsmessage");
    lang.RegisterMessages(dictionary, this.Plugin);