export function getLocalizedString()

in src/localization/localizationHelper.ts [64:67]


export function getLocalizedString(locale: string, key: string): string {
    return myResources && key && myResources[key] &&
    (((myResources[key]).localization[locale]) || (myResources[key]).defaultValue);
}