Localization

This page contains information on intent logic and description.

Localizations are text-based values attached to a key to be used as messages that are being sent to a user as a response from bot in your project.

Localization

In your Sample Project, you can access the text provided in the localization panel, with the method

var text = GetLocalizationText("hello_world");

After having been provided with the necessary localization of a given text, one might send a message to user by using methods derived from BaseWhatsAppDialog class.

SendMessage(text);
Hello World

Last updated