BotDetect CAPTCHA Lithuanian Localization

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

Supported Lithuanian CAPTCHA Locales

Lithuanian CAPTCHA

Captcha Locale overview:

Language Country BotDetect Locale settings
Lithuanian Lithuania lt

Examples and specifications of individual Captcha feature localizations:

Lithuanian 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 Lithuanian 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 Lithuanian -->
    <BotDetect:WebFormsCaptcha ID="ExampleCaptcha" runat="server" Locale="lt" />
    or the page code-behind:
    [C#]
        
    // Set the Captcha instance Locale to Lithuanian    
    ExampleCaptcha.Locale = "lt";
    [VB.NET]
        
    ' Set the Captcha instance Locale to Lithuanian    
    ExampleCaptcha.Locale = "lt"

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

    <botDetect locale="lt" 
  • In Java applications, you can use either the application web.xml configuration file setting:
    <context-param>
      <param-name>BDC_locale</param-name>
      <param-value>lt</param-value>
    </context-param>
    
    or the Captcha object instance-specific value:
    exampleCaptcha.setLocale("lt"); 
    
    or Standard / Facelets JSF Captcha Tag page source:
    <botDetect:jsfCaptcha id="exampleCaptcha" locale="lt"
    
    or JSP Captcha Tag page source:
    <botDetect:captcha id="exampleCaptcha" locale="lt"
    
  • 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 Lithuanian
    BotDetect.Locale = "lt"
    or the Captcha object instance-specific value:
    <%
      Dim ExampleCaptcha : Set ExampleCaptcha = (New Captcha)("ExampleCaptcha")
      ExampleCaptcha.UserInputID = "CaptchaCode"
      ' Set the Captcha object instance Locale to Lithuanian
      ExampleCaptcha.Locale = "lt"
      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 Lithuanian
    $BDC_CaptchaConfig->Locale = 'lt';
    or the Captcha object instance-specific value:
    <?php 
      $ExampleCaptcha = new Captcha("ExampleCaptcha");
      $ExampleCaptcha->UserInputID = "CaptchaCode";
      // Set the Captcha object instance Locale to Lithuanian
      $ExampleCaptcha->Locale = 'lt';
      echo $ExampleCaptcha->Html(); 
    ?>

Lithuanian Localized Audio CAPTCHA Sounds

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

To use BotDetect sounds localized for the Lithuanian Captcha Locale, you should also download the Lithuanian 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.

Lithuanian Localized CAPTCHA Codes

The lt Captcha locale uses the default Latin character set without the Q,W,X characters, for a total of 23 alpha characters.

CodeStyle.Alpha Lithuanian CAPTCHA Characters
Unicode code point Name Character
0x0041 a A
0x0042 b B
0x0043 ts C
0x0044 d D
0x0045 e E
0x0046 e F (not used)
0x0047 g G (not used)
0x0048 h H
0x0049 i I (not used)
0x004A j J
0x004B k K
0x004C l L (not used)
0x004D m M
0x004E n N
0x004F o O
0x0050 p P
0x0052 r R
0x0053 s S
0x0054 t T
0x0055 u U
0x0056 v V
0x0059 y Y
0x005A z Z
CodeStyle.Numeric Lithuanian CAPTCHA Characters
Unicode code point Name Character
0x0030 nulis 0
0x0031 vienas 1
0x0032 du 2
0x0033 trys 3
0x0034 keturi 4
0x0035 penki 5
0x0036 šeši 6
0x0037 septyni 7 (not used)
0x0038 aštuoni 8
0x0039 devyni 9
CodeStyle.Alphanumeric Lithuanian CAPTCHA Characters
Unicode code point Name Character
0x0041 a A
0x0042 b B
0x0043 ts C
0x0044 d D
0x0045 e E
0x0046 f F (not used)
0x0047 g G (not used)
0x0048 h H
0x0049 i I (not used)
0x004A j J
0x004B k K
0x004C l L (not used)
0x004D m M
0x004E n N
0x004F o O (not used)
0x0050 p P
0x0052 r R
0x0053 s S
0x0054 t T
0x0055 u U
0x0056 v V
0x0059 y Y
0x005A z Z (not used)
0x0030 nulis 0 (not used)
0x0031 vienas 1 (not used)
0x0032 du 2 (not used)
0x0033 trys 3
0x0034 keturi 4
0x0035 penki 5
0x0036 šeši 6
0x0037 septyni 7 (not used)
0x0038 aštuoni 8
0x0039 devyni 9

Current BotDetect Versions