Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

AccessiBeDefaults.cs

namespace Nop.Plugin.Widgets.AccessiBe;

/// 
/// Represents plugin constants
/// 
public class AccessiBeDefaults
{
    /// 
    /// Gets the plugin system name
    /// 
    public static string SystemName => "Widgets.AccessiBe";

    /// 
    /// Gets the configuration route name
    /// 
    public static string ConfigurationRouteName => "Plugin.Widgets.AccessiBe.Configure";

    /// 
    /// Gets the script configuration token
    /// 
    public static string ConfigToken => "{WIDGET_CONFIG}";

    /// 
    /// Gets a list interface languages
    /// 
    public static Dictionary 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"
    };
}