Kimono.KLocale.TranslateRaw C# (CSharp) Метод

TranslateRaw() публичный Метод

Raw translation from message catalogs. Never use this directly to get message translations. See i18n and ki18n calls related to KLocalizedString. name="msg" the message. Must not be null. Must be UTF-8 encoded. name="lang" language in which the translation was found. If no translation was found, KLocale.DefaultLanguage() is reported. If null, the language is not reported. name="trans" raw translation, or original if not found. If no translation was found, original message is reported. If null, the translation is not reported.
public TranslateRaw ( string msg, StringBuilder lang, StringBuilder trans ) : void
msg string
lang StringBuilder
trans StringBuilder
Результат void
        public void TranslateRaw(string msg, StringBuilder lang, StringBuilder trans)
        {
            interceptor.Invoke("translateRaw$$$", "translateRaw(const char*, QString*, QString*) const", typeof(void), typeof(string), msg, typeof(StringBuilder), lang, typeof(StringBuilder), trans);
        }

Same methods

KLocale::TranslateRaw ( string ctxt, string msg, StringBuilder lang, StringBuilder trans ) : void
KLocale::TranslateRaw ( string ctxt, string singular, string plural, ulong n, StringBuilder lang, StringBuilder trans ) : void
KLocale::TranslateRaw ( string singular, string plural, ulong n, StringBuilder lang, StringBuilder trans ) : void