BotDetect CAPTCHA Estonian Localization

This page contains the details of Estonian Captcha (eesti Captcha) locales fully supported by BotDetect, for which there are both localized Captcha images and audio Captcha sounds available.

Supported Estonian CAPTCHA Locales

Estonian CAPTCHA

Captcha Locale overview:

Language Country BotDetect Locale settings
Estonian Estonia et

Examples and specifications of individual Captcha feature localizations:

Estonian Localized CAPTCHA Images

Example Captcha images generated by BotDetect using the base Latin character set for all Captcha ImageStyle values can be seen in the BotDetect Captcha image styles demo

To use BotDetect Captcha images localized for the Estonian Captcha Locale in your application, you can specify the Locale value:

  • In ASP.NET applications, you can use either the .aspx page source:
    <!-- Captcha control localized to Estonian -->
    <BotDetect:WebFormsCaptcha ID="ExampleCaptcha" runat="server" Locale="et" />
    or the page code-behind:
    [C#]
        
    // Set the Captcha instance Locale to Estonian    
    ExampleCaptcha.Locale = "et";
    [VB.NET]
        
    ' Set the Captcha instance Locale to Estonian    
    ExampleCaptcha.Locale = "et"

    or Locale-dependent Captcha strings can be configured on application level in the <botDetect> Web.config configuration section:

    <botDetect locale="et" 
  • In Java applications, you can use either the application web.xml configuration file setting:
    <context-param>
      <param-name>BDC_locale</param-name>
      <param-value>et</param-value>
    </context-param>
    
    or the Captcha object instance-specific value:
    exampleCaptcha.setLocale("et"); 
    
    or Standard / Facelets JSF Captcha Tag page source:
    <botDetect:jsfCaptcha id="exampleCaptcha" locale="et"
    
    or JSP Captcha Tag page source:
    <botDetect:captcha id="exampleCaptcha" locale="et"
    
  • In ASP Classic applications, you can use either the application-global setting in the BotDetect\CaptchaConfig.asp file:
    ' Set the default Locale for all Captcha instances in the 
    ' Classic ASP application to Estonian
    BotDetect.Locale = "et"
    or the Captcha object instance-specific value:
    <%
      Dim ExampleCaptcha : Set ExampleCaptcha = (New Captcha)("ExampleCaptcha")
      ExampleCaptcha.UserInputID = "CaptchaCode"
      ' Set the Captcha object instance Locale to Estonian
      ExampleCaptcha.Locale = "et"
      Response.Write ExampleCaptcha.Html
    %>
  • In PHP applications, you can use either the application-global setting in the lib/botdetect/CaptchaConfigDefaults.php file:
    // Set the default Locale for all Captcha instances in the 
    // PHP application to Estonian
    $BDC_CaptchaConfig->Locale = 'et';
    or the Captcha object instance-specific value:
    <?php 
      $ExampleCaptcha = new Captcha("ExampleCaptcha");
      $ExampleCaptcha->UserInputID = "CaptchaCode";
      // Set the Captcha object instance Locale to Estonian
      $ExampleCaptcha->Locale = 'et';
      echo $ExampleCaptcha->Html(); 
    ?>

Estonian Localized Audio CAPTCHA Sounds

Example audio Captcha sounds generated by BotDetect using the Estonian Locale setting can be heard in the BotDetect Captcha features demo

To use BotDetect sounds localized for the Estonian Captcha Locale, you should also download the Estonian Pronunciation Sound Package and deploy the .bdsp file to the BotDetect sounds folder your application uses:

  • ASP.NET applications use Bin\BotDetectSounds by default. A custom folder can be specified in the <botDetect> configuration section.
  • Java applications use WEB-INF\BotDetectSounds by default. A custom folder can be specified in the web.xml configuration file setting.
  • ASP Classic applications use Redistribute\BotDetectSounds in the BotDetect installation folder by default. A custom folder can be specified in the BotDetect/CaptchaConfig.asp file.
  • PHP applications always use lib/botdetect/Resources/Sounds.

Estonian Localized CAPTCHA Codes

The et Captcha locale uses the default Latin character set without the C,Q,W,X,Y characters, for a total of 21 alpha characters.

CodeStyle.Alpha Estonian CAPTCHA Characters
Unicode code point Name Character
0x0041 aa A
0x0042 bee B
0x0044 dee D
0x0045 e E
0x0046 eff F (not used)
0x0047 gee G (not used)
0x0048 haa H
0x0049 ii I (not used)
0x004A jott J
0x004B kaa K
0x004C ell L (not used)
0x004D emm M
0x004E enn N
0x004F oo O
0x0050 pee P
0x0052 err R
0x0053 ess S
0x0054 tee T
0x0055 uu U
0x0056 vee V
0x005A zett Z
CodeStyle.Numeric Estonian CAPTCHA Characters
Unicode code point Name Character
0x0030 null 0
0x0031 üks 1
0x0032 kaks 2
0x0033 kolm 3
0x0034 neli 4
0x0035 viis 5
0x0036 kuus 6
0x0037 seitse 7 (not used)
0x0038 kaheksa 8
0x0039 üheksa 9
CodeStyle.Alphanumeric Estonian CAPTCHA Characters
Unicode code point Name Character
0x0041 aa A
0x0042 bee B
0x0044 dee D
0x0045 ee E
0x0046 eff F (not used)
0x0047 gee G (not used)
0x0048 haa H
0x0049 ii I (not used)
0x004A jott J
0x004B kaa K
0x004C ell L (not used)
0x004D emm M
0x004E enn N
0x004F oo O (not used)
0x0050 pee P
0x0052 err R
0x0053 ess S
0x0054 tee T
0x0055 uu U
0x0056 vee V
0x005A zee Z (not used)
0x0030 null 0 (not used)
0x0031 üks 1 (not used)
0x0032 kaks 2 (not used)
0x0033 kolm 3
0x0034 neli 4
0x0035 viis 5
0x0036 kuus 6
0x0037 seitse 7 (not used)
0x0038 kaheksa 8
0x0039 üheksa 9

Current BotDetect Versions