Kimono.KLocale.TranslateQt C# (CSharp) Method

TranslateQt() public method

Translates a message as a QTranslator is supposed to. The parameters are similar to i18n(), but the result value has other semantics (it can be string())
public TranslateQt ( string context, string sourceText, string comment ) : string
context string
sourceText string
comment string
return string
        public string TranslateQt(string context, string sourceText, string comment)
        {
            return (string) interceptor.Invoke("translateQt$$$", "translateQt(const char*, const char*, const char*) const", typeof(string), typeof(string), context, typeof(string), sourceText, typeof(string), comment);
        }