Convert char * to FText?

Can the type of ‘char *’ be converted to FText?

this should work:

char* myText = “ugabuga”;

FText localizedText = FText::FromString(ANSI_TO_TCHAR(myText ));