in src/localization/localizationHelper.ts [65:67]
export function getLocalizedString(locale: string, key: string): string {
return myResources && key && myResources[key] && (((myResources[key]).localization[locale]) || (myResources[key]).defaultValue);
}