BotDetect CAPTCHA Indonesian Localization

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

Supported Indonesian CAPTCHA Locales

Indonesian CAPTCHA

Captcha Locale overview:

Language Country BotDetect Locale settings
Indonesian Indonesia id, id-ID

Examples and specifications of individual Captcha feature localizations:

Indonesian 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 Indonesian Captcha Locale in your application, you can specify the Locale value:

  • 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 Indonesian
    $BDC_CaptchaConfig->Locale = 'id';
    or the Captcha object instance-specific value:
    <?php 
      $ExampleCaptcha = new Captcha("ExampleCaptcha");
      $ExampleCaptcha->UserInputID = "CaptchaCode";
      // Set the Captcha object instance Locale to Indonesian
      $ExampleCaptcha->Locale = 'id';
      echo $ExampleCaptcha->Html(); 
    ?>
  • In ASP.NET applications, you can use either the .aspx page source:
    <!-- Captcha control localized to Indonesian -->
    <BotDetect:WebFormsCaptcha ID="ExampleCaptcha" runat="server" Locale="id" />
    or the page code-behind:
    [C#]
        
    // Set the Captcha instance Locale to Indonesian    
    ExampleCaptcha.Locale = "id";
    [VB.NET]
        
    ' Set the Captcha instance Locale to Indonesian    
    ExampleCaptcha.Locale = "id"

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

    <botDetect locale="id" 
  • 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 Indonesian
    BotDetect.Locale = "id"
    or the Captcha object instance-specific value:
    <%
      Dim ExampleCaptcha : Set ExampleCaptcha = (New Captcha)("ExampleCaptcha")
      ExampleCaptcha.UserInputID = "CaptchaCode"
      ' Set the Captcha object instance Locale to Indonesian
      ExampleCaptcha.Locale = "id"
      Response.Write ExampleCaptcha.Html
    %>

Indonesian Localized Audio CAPTCHA Sounds

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

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

  • PHP applications always use lib/botdetect/Resources/Sounds.
  • ASP.NET applications use Bin\BotDetectSounds by default. A custom folder can be specified in the <botDetect> configuration section.
  • 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.

Indonesian Localized CAPTCHA Codes

The id Captcha locale uses the default Latin character set, consisting of 26 characters.

CodeStyle.Alpha Indonesian CAPTCHA Characters
Unicode code point Name Character
0x0041 a A
0x0042 B
0x0043 C
0x0044 D
0x0045 é E
0x0046 éf F (not used)
0x0047 G (not used)
0x0048 ha H
0x0049 i I (not used)
0x004A J
0x004B ka K
0x004C él L (not used)
0x004D ém M
0x004E én N
0x004F o O
0x0050 P
0x0051 ki Q (not used)
0x0052 ér R
0x0053 és S
0x0054 te T
0x0055 u U
0x0056 ve V
0x0057 we W
0x0058 ex X
0x0059 Y
0x005A zet Z
CodeStyle.Numeric Indonesian CAPTCHA Characters
Unicode code point Name Character
0x0030 nol/kosong 0
0x0031 satu 1
0x0032 dua 2
0x0033 tiga 3
0x0034 empat 4
0x0035 lima 5
0x0036 enam 6
0x0037 tujuh 7 (not used)
0x0038 delapan 8
0x0039 sembilan 9
CodeStyle.Alphanumeric Indonesian CAPTCHA Characters
Unicode code point Name Character
0x0041 a A
0x0042 B
0x0043 C
0x0044 D
0x0045 é E
0x0046 éf F (not used)
0x0047 G (not used)
0x0048 ha H
0x0049 i I (not used)
0x004A J
0x004B ka K
0x004C él L (not used)
0x004D ém M
0x004E én N
0x004F o O (not used)
0x0050 P
0x0051 ki Q (not used)
0x0052 ér R
0x0053 és S
0x0054 te T
0x0055 u U
0x0056 ve V
0x0057 we W
0x0058 ex X
0x0059 Y
0x005A zet Z (not used)
0x0030 nol/kosong 0 (not used)
0x0031 satu 1 (not used)
0x0032 dua 2 (not used)
0x0033 tiga 3
0x0034 empat 4
0x0035 lima 5
0x0036 enam 6
0x0037 tujuh 7 (not used)
0x0038 delapan 8
0x0039 sembilan 9

Current BotDetect Versions