@genexus/web-standard-functions
Version:
GeneXus JavaScript standard functions library for web generators
8 lines (7 loc) • 423 B
TypeScript
/**
* Searches the language object (or the current language if that parameter is omitted) for a given message code
* @param {string} str The message identifier
* @param {string} languageName The language name, may be omitted
* @return {string} The translation of the given message in the specified language or the current language
*/
export declare const getMessageText: (str: string, languageName: string) => string;