Kimono.KLocale.InsertCatalog C# (CSharp) Method

InsertCatalog() public method

Adds another catalog to search for translation lookup. This function is useful for extern libraries and/or code, that provide there own messages. If the catalog does not exist for the chosen language, it will be ignored and en_US will be used. name="catalog" The catalog to add.
public InsertCatalog ( string catalog ) : void
catalog string
return void
        public void InsertCatalog(string catalog)
        {
            interceptor.Invoke("insertCatalog$", "insertCatalog(const QString&)", typeof(void), typeof(string), catalog);
        }