Try your search with a different keyword or use * as a wildcard.
namespace Nop.Plugin.Widgets.AccessiBe;
/// <summary>
/// Represents plugin constants
/// </summary>
public class AccessiBeDefaults
{
/// <summary>
/// Gets the plugin system name
/// </summary>
public static string SystemName => "Widgets.AccessiBe";
/// <summary>
/// Gets the configuration route name
/// </summary>
public static string ConfigurationRouteName => "Plugin.Widgets.AccessiBe.Configure";
/// <summary>
/// Gets the script configuration token
/// </summary>
public static string ConfigToken => "{WIDGET_CONFIG}";
/// <summary>
/// Gets a list interface languages
/// </summary>
public static Dictionary<string, string> SupportedLanuages => new()
{
["English"] = "en",
["Español"] = "es",
["Français"] = "fr",
["Deutsche"] = "de",
["Polski"] = "pl",
["Italiano"] = "it",
["Português"] = "pt",
["Nederlands"] = "nl",
["Magyar"] = "hu",
["Norsk"] = "no",
["Slovenšcina"] = "sl",
["Slovencina"] = "sk",
["Svenska"] = "sv",
["Ceština"] = "cs",
["Türkçe"] = "tr",
["???"] = "ja",
["??"] = "tw",
["??"] = "zh",
["?????"] = "he",
["???????"] = "ru",
["???????? ??????? ???????"] = "ar",
["????"] = "ar"
};
}