BotDetect CAPTCHA Slovak Localization

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

Supported Slovak CAPTCHA Locales

Slovak CAPTCHA

Captcha Locale overview:

Language Country BotDetect Locale settings
Slovak Slovakia sk

Examples and specifications of individual Captcha feature localizations:

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

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

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

Slovak Localized Audio CAPTCHA Sounds

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

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

Slovak Localized CAPTCHA Codes

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

CodeStyle.Alpha Slovak CAPTCHA Characters
Unicode code point Name Character
0x0041 á A
0x0042 B
0x0043 C
0x0044 D
0x0045 é E
0x0046 ef F (not used)
0x0047 G (not used)
0x0048 H
0x0049 í I (not used)
0x004A J
0x004B K
0x004C el L (not used)
0x004D em M
0x004E en N
0x004F ó O
0x0050 P
0x0052 er R
0x0053 es S
0x0054 T
0x0055 ú U
0x0056 V
0x0059 ypsilon Y
0x005A zet Z
CodeStyle.Numeric Slovak CAPTCHA Characters
Unicode code point Name Character
0x0030 nula 0
0x0031 jeden 1
0x0032 dva 2
0x0033 tři 3
0x0034 čtyři 4
0x0035 pět 5
0x0036 šest 6
0x0037 sedm 7 (not used)
0x0038 osm 8
0x0039 devět 9
CodeStyle.Alphanumeric Slovak CAPTCHA Characters
Unicode code point Name Character
0x0041 á A
0x0042 B
0x0043 C
0x0044 D
0x0045 é E
0x0046 ef F (not used)
0x0047 G (not used)
0x0048 H
0x0049 í I (not used)
0x004A J
0x004B K
0x004C el L (not used)
0x004D em M
0x004E en N
0x004F ó O (not used)
0x0050 P
0x0052 er R
0x0053 es S
0x0054 T
0x0055 ú U
0x0056 V
0x0059 ypsilon Y
0x005A zet Z (not used)
0x0030 nula 0 (not used)
0x0031 jeden 1 (not used)
0x0032 dva 2 (not used)
0x0033 tři 3
0x0034 čtyři 4
0x0035 pět 5
0x0036 šest 6
0x0037 sedm 7 (not used)
0x0038 osm 8
0x0039 devět 9

Current BotDetect Versions