BotDetect CAPTCHA English Localization
This page contains the details of English Captcha locales fully supported by BotDetect, for which there are both localized Captcha images and audio Captcha sounds available.
Supported English CAPTCHA Locales
- en-US (US English)
- en-GB (British English)
- en-IE (Irish English)
- en-AU (Australian English)
- en-CA (Canadian English)
- en-IN (Indian English)
US English CAPTCHA
Captcha Locale overview:
Language | Country | BotDetect Locale settings |
---|---|---|
English | United States | en-US |
Examples and specifications of individual Captcha feature localizations:
- US English localized Captcha images
- US English localized audio Captcha sounds
- US English localized Captcha codes
US English 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
BotDetect uses US English Captchas by default. If you need to explicitly reset the Locale setting and use BotDetect Captcha images localized for the US English 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 US English --> <BotDetect:WebFormsCaptcha ID="ExampleCaptcha" runat="server" Locale="en-US" />
or the page code-behind:[C#] // Set the Captcha instance Locale to US English ExampleCaptcha.Locale = "en-US";
[VB.NET] ' Set the Captcha instance Locale to US English ExampleCaptcha.Locale = "en-US"
or Locale-dependent Captcha strings can be configured on application level in the
<botDetect>
Web.config configuration section:<botDetect locale="en-US"
- In Java applications, you can use either the application
web.xml
configuration file setting:<context-param> <param-name>BDC_locale</param-name> <param-value>en-US</param-value> </context-param>
or the Captcha object instance-specific value:exampleCaptcha.setLocale("en-US");
or Standard / Facelets JSF Captcha Tag page source:<botDetect:jsfCaptcha id="exampleCaptcha" locale="en-US"
or JSP Captcha Tag page source:<botDetect:captcha id="exampleCaptcha" locale="en-US"
- 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 US English BotDetect.Locale = "en-US"
or the Captcha object instance-specific value:<% Dim ExampleCaptcha : Set ExampleCaptcha = (New Captcha)("ExampleCaptcha") ExampleCaptcha.UserInputID = "CaptchaCode" ' Set the Captcha object instance Locale to US English ExampleCaptcha.Locale = "en-US" 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 US English $BDC_CaptchaConfig->Locale = 'en-US';
or the Captcha object instance-specific value:<?php $ExampleCaptcha = new Captcha("ExampleCaptcha"); $ExampleCaptcha->UserInputID = "CaptchaCode"; // Set the Captcha object instance Locale to US English $ExampleCaptcha->Locale = 'en-US'; echo $ExampleCaptcha->Html(); ?>
US English Localized Audio CAPTCHA Sounds
Example audio Captcha sounds generated by BotDetect using the Latin Locale setting can be heard in the BotDetect Captcha features demo
BotDetect contains the basic US English pronunciation data embedded in the assembly, so you don't need to deploy any additional files with your applications.
Since the non-embedded version of the sound package might in the future contain multiple voices, you can also download the US English 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 theweb.xml
configuration file setting. - ASP Classic applications use
Redistribute\BotDetectSounds
in the BotDetect installation folder by default. A custom folder can be specified in theBotDetect/CaptchaConfig.asp
file. - PHP applications always use
lib/botdetect/Resources/Sounds
.
US English Localized CAPTCHA Codes
The en-US
Captcha locale uses the default Latin character set, consisting of 26 characters.
CodeStyle.Alpha US English CAPTCHA Characters
Unicode code point | Name | Character |
---|---|---|
0x0041 |
a | A |
0x0042 |
bee | B |
0x0043 |
cee | C |
0x0044 |
dee | D |
0x0045 |
e | E |
0x0046 |
ef | F (not used) |
0x0047 |
gee | G (not used) |
0x0048 |
(h)aitch | H |
0x0049 |
i | I (not used) |
0x004A |
jay | J |
0x004B |
kay | K |
0x004C |
el | L (not used) |
0x004D |
em | M |
0x004E |
en | N |
0x004F |
o | O |
0x0050 |
pee | P |
0x0051 |
cue | Q (not used) |
0x0052 |
ar | R |
0x0053 |
ess | S |
0x0054 |
tee | T |
0x0055 |
u | U |
0x0056 |
vee | V |
0x0057 |
double-u | W |
0x0058 |
ex | X |
0x0059 |
wy(e) | Y |
0x005A |
zee | Z |
CodeStyle.Numeric US English CAPTCHA Characters
Unicode code point | Name | Character |
---|---|---|
0x0030 |
zero | 0 |
0x0031 |
one | 1 |
0x0032 |
two | 2 |
0x0033 |
three | 3 |
0x0034 |
four | 4 |
0x0035 |
five | 5 |
0x0036 |
six | 6 |
0x0037 |
seven | 7 (not used) |
0x0038 |
eight | 8 |
0x0039 |
nine | 9 |
CodeStyle.Alphanumeric US English CAPTCHA Characters
Unicode code point | Name | Character |
---|---|---|
0x0041 |
a | A |
0x0042 |
bee | B |
0x0043 |
cee | C |
0x0044 |
ded | D |
0x0045 |
e | E |
0x0046 |
ef | F (not used) |
0x0047 |
gee | G (not used) |
0x0048 |
(h)aitch | H |
0x0049 |
i | I (not used) |
0x004A |
jay | J |
0x004B |
kay | K |
0x004C |
el | L (not used) |
0x004D |
em | M |
0x004E |
en | N |
0x004F |
o | O (not used) |
0x0050 |
pee | P |
0x0051 |
cue | Q (not used) |
0x0052 |
ar | R |
0x0053 |
ess | S |
0x0054 |
tee | T |
0x0055 |
u | U |
0x0056 |
vee | V |
0x0057 |
double-u | W |
0x0058 |
ex | X |
0x0059 |
wy(e) | Y |
0x005A |
zee | Z (not used) |
0x0030 |
zero | 0 (not used) |
0x0031 |
one | 1 (not used) |
0x0032 |
two | 2 (not used) |
0x0033 |
three | 3 |
0x0034 |
four | 4 |
0x0035 |
five | 5 |
0x0036 |
six | 6 |
0x0037 |
seven | 7 (not used) |
0x0038 |
eight | 8 |
0x0039 |
nine | 9 |
British English CAPTCHA
Captcha Locale overview:
Language | Country | BotDetect Locale settings |
---|---|---|
English | United Kingdom | en-GB |
Examples and specifications of individual Captcha feature localizations:
- British English localized Captcha images
- British English localized audio Captcha sounds
- British English localized Captcha codes
British English 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 British English 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 British English --> <BotDetect:WebFormsCaptcha ID="ExampleCaptcha" runat="server" Locale="en-GB" />
or the page code-behind:[C#] // Set the Captcha instance Locale to British English ExampleCaptcha.Locale = "en-GB";
[VB.NET] ' Set the Captcha instance Locale to British English ExampleCaptcha.Locale = "en-GB"
or Locale-dependent Captcha strings can be configured on application level in the
<botDetect>
Web.config configuration section:<botDetect locale="en-GB"
- In Java applications, you can use either the application
web.xml
configuration file setting:<context-param> <param-name>BDC_locale</param-name> <param-value>en-GB</param-value> </context-param>
or the Captcha object instance-specific value:exampleCaptcha.setLocale("en-GB");
or Standard / Facelets JSF Captcha Tag page source:<botDetect:jsfCaptcha id="exampleCaptcha" locale="en-GB"
or JSP Captcha Tag page source:<botDetect:captcha id="exampleCaptcha" locale="en-GB"
- 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 British English BotDetect.Locale = "en-GB"
or the Captcha object instance-specific value:<% Dim ExampleCaptcha : Set ExampleCaptcha = (New Captcha)("ExampleCaptcha") ExampleCaptcha.UserInputID = "CaptchaCode" ' Set the Captcha object instance Locale to British English ExampleCaptcha.Locale = "en-GB" 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 British English $BDC_CaptchaConfig->Locale = 'en-GB';
or the Captcha object instance-specific value:<?php $ExampleCaptcha = new Captcha("ExampleCaptcha"); $ExampleCaptcha->UserInputID = "CaptchaCode"; // Set the Captcha object instance Locale to British English $ExampleCaptcha->Locale = 'en-GB'; echo $ExampleCaptcha->Html(); ?>
British English Localized Audio CAPTCHA Sounds
Example audio Captcha sounds generated by BotDetect using the Latin Locale setting can be heard in the BotDetect Captcha features demo
To use BotDetect sounds localized for the British English Captcha Locale, you should also download the British English Pronunciation Sound Package and deploy the British English Pronunciation Sound Package and deploy the .bdsp
file to the BotDetectSounds folder your application uses:
British English Localized CAPTCHA Codes
The en-GB
Captcha locale uses the default Latin character set, consisting of 26 characters.
CodeStyle.Alpha British English CAPTCHA Characters
Unicode code point | Name | Character |
---|---|---|
0x0041 |
a | A |
0x0042 |
bee | B |
0x0043 |
cee | C |
0x0044 |
dee | D |
0x0045 |
e | E |
0x0046 |
ef | F (not used) |
0x0047 |
gee | G (not used) |
0x0048 |
(h)aitch | H |
0x0049 |
i | I (not used) |
0x004A |
jay | J |
0x004B |
kay | K |
0x004C |
el | L (not used) |
0x004D |
em | M |
0x004E |
en | N |
0x004F |
o | O |
0x0050 |
pee | P |
0x0051 |
cue | Q (not used) |
0x0052 |
ar | R |
0x0053 |
ess | S |
0x0054 |
tee | T |
0x0055 |
u | U |
0x0056 |
vee | V |
0x0057 |
double-u | W |
0x0058 |
ex | X |
0x0059 |
wy(e) | Y |
0x005A |
zed | Z |
CodeStyle.Numeric British English CAPTCHA Characters
Unicode code point | Name | Character |
---|---|---|
0x0030 |
zero | 0 |
0x0031 |
one | 1 |
0x0032 |
two | 2 |
0x0033 |
three | 3 |
0x0034 |
four | 4 |
0x0035 |
five | 5 |
0x0036 |
six | 6 |
0x0037 |
seven | 7 (not used) |
0x0038 |
eight | 8 |
0x0039 |
nine | 9 |
CodeStyle.Alphanumeric British English CAPTCHA Characters
Unicode code point | Name | Character |
---|---|---|
0x0041 |
a | A |
0x0042 |
bee | B |
0x0043 |
cee | C |
0x0044 |
ded | D |
0x0045 |
e | E |
0x0046 |
ef | F (not used) |
0x0047 |
gee | G (not used) |
0x0048 |
(h)aitch | H |
0x0049 |
i | I (not used) |
0x004A |
jay | J |
0x004B |
kay | K |
0x004C |
el | L (not used) |
0x004D |
em | M |
0x004E |
en | N |
0x004F |
o | O (not used) |
0x0050 |
pee | P |
0x0051 |
cue | Q (not used) |
0x0052 |
ar | R |
0x0053 |
ess | S |
0x0054 |
tee | T |
0x0055 |
u | U |
0x0056 |
vee | V |
0x0057 |
double-u | W |
0x0058 |
ex | X |
0x0059 |
wy(e) | Y |
0x005A |
zed | Z (not used) |
0x0030 |
zero | 0 (not used) |
0x0031 |
one | 1 (not used) |
0x0032 |
two | 2 (not used) |
0x0033 |
three | 3 |
0x0034 |
four | 4 |
0x0035 |
five | 5 |
0x0036 |
six | 6 |
0x0037 |
seven | 7 (not used) |
0x0038 |
eight | 8 |
0x0039 |
nine | 9 |
Irish English CAPTCHA
Captcha Locale overview:
Language | Country | BotDetect Locale settings |
---|---|---|
English | Ireland | en-IE |
Examples and specifications of individual Captcha feature localizations:
- Irish English localized Captcha images
- Irish English localized audio Captcha sounds
- Irish English localized Captcha codes
Irish English 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 Irish English 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 Irish English --> <BotDetect:WebFormsCaptcha ID="ExampleCaptcha" runat="server" Locale="en-IE" />
or the page code-behind:[C#] // Set the Captcha instance Locale to Irish English ExampleCaptcha.Locale = "en-IE";
[VB.NET] ' Set the Captcha instance Locale to Irish English ExampleCaptcha.Locale = "en-IE"
or Locale-dependent Captcha strings can be configured on application level in the
<botDetect>
Web.config configuration section:<botDetect locale="en-IE"
- In Java applications, you can use either the application
web.xml
configuration file setting:<context-param> <param-name>BDC_locale</param-name> <param-value>en-IE</param-value> </context-param>
or the Captcha object instance-specific value:exampleCaptcha.setLocale("en-IE");
or Standard / Facelets JSF Captcha Tag page source:<botDetect:jsfCaptcha id="exampleCaptcha" locale="en-IE"
or JSP Captcha Tag page source:<botDetect:captcha id="exampleCaptcha" locale="en-IE"
- 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 Irish English BotDetect.Locale = "en-IE"
or the Captcha object instance-specific value:<% Dim ExampleCaptcha : Set ExampleCaptcha = (New Captcha)("ExampleCaptcha") ExampleCaptcha.UserInputID = "CaptchaCode" ' Set the Captcha object instance Locale to Irish English ExampleCaptcha.Locale = "en-IE" 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 Irish English $BDC_CaptchaConfig->Locale = 'en-IE';
or the Captcha object instance-specific value:<?php $ExampleCaptcha = new Captcha("ExampleCaptcha"); $ExampleCaptcha->UserInputID = "CaptchaCode"; // Set the Captcha object instance Locale to Irish English $ExampleCaptcha->Locale = 'en-IE'; echo $ExampleCaptcha->Html(); ?>
Irish English Localized Audio CAPTCHA Sounds
Example audio Captcha sounds generated by BotDetect using the Latin Locale setting can be heard in the BotDetect Captcha features demo
To use BotDetect sounds localized for the Irish English Captcha Locale, you should also download the Irish English Pronunciation Sound Package and deploy the Irish English Pronunciation Sound Package and deploy the .bdsp
file to the BotDetectSounds folder your application uses:
Irish English Localized CAPTCHA Codes
The en-IE
Captcha locale uses the default Latin character set, consisting of 26 characters.
CodeStyle.Alpha Irish English CAPTCHA Characters
Unicode code point | Name | Character |
---|---|---|
0x0041 |
a | A |
0x0042 |
bee | B |
0x0043 |
cee | C |
0x0044 |
dee | D |
0x0045 |
e | E |
0x0046 |
ef | F (not used) |
0x0047 |
gee | G (not used) |
0x0048 |
(h)aitch | H |
0x0049 |
i | I (not used) |
0x004A |
jay | J |
0x004B |
kay | K |
0x004C |
el | L (not used) |
0x004D |
em | M |
0x004E |
en | N |
0x004F |
o | O |
0x0050 |
pee | P |
0x0051 |
cue | Q (not used) |
0x0052 |
ar | R |
0x0053 |
ess | S |
0x0054 |
tee | T |
0x0055 |
u | U |
0x0056 |
vee | V |
0x0057 |
double-u | W |
0x0058 |
ex | X |
0x0059 |
wy(e) | Y |
0x005A |
zed | Z |
CodeStyle.Numeric Irish English CAPTCHA Characters
Unicode code point | Name | Character |
---|---|---|
0x0030 |
zero | 0 |
0x0031 |
one | 1 |
0x0032 |
two | 2 |
0x0033 |
three | 3 |
0x0034 |
four | 4 |
0x0035 |
five | 5 |
0x0036 |
six | 6 |
0x0037 |
seven | 7 (not used) |
0x0038 |
eight | 8 |
0x0039 |
nine | 9 |
CodeStyle.Alphanumeric Irish English CAPTCHA Characters
Unicode code point | Name | Character |
---|---|---|
0x0041 |
a | A |
0x0042 |
bee | B |
0x0043 |
cee | C |
0x0044 |
ded | D |
0x0045 |
e | E |
0x0046 |
ef | F (not used) |
0x0047 |
gee | G (not used) |
0x0048 |
(h)aitch | H |
0x0049 |
i | I (not used) |
0x004A |
jay | J |
0x004B |
kay | K |
0x004C |
el | L (not used) |
0x004D |
em | M |
0x004E |
en | N |
0x004F |
o | O (not used) |
0x0050 |
pee | P |
0x0051 |
cue | Q (not used) |
0x0052 |
ar | R |
0x0053 |
ess | S |
0x0054 |
tee | T |
0x0055 |
u | U |
0x0056 |
vee | V |
0x0057 |
double-u | W |
0x0058 |
ex | X |
0x0059 |
wy(e) | Y |
0x005A |
zed | Z (not used) |
0x0030 |
zero | 0 (not used) |
0x0031 |
one | 1 (not used) |
0x0032 |
two | 2 (not used) |
0x0033 |
three | 3 |
0x0034 |
four | 4 |
0x0035 |
five | 5 |
0x0036 |
six | 6 |
0x0037 |
seven | 7 (not used) |
0x0038 |
eight | 8 |
0x0039 |
nine | 9 |
Australian English CAPTCHA
Captcha Locale overview:
Language | Country | BotDetect Locale settings |
---|---|---|
English | Australia | en-AU |
Examples and specifications of individual Captcha feature localizations:
- Australian English localized Captcha images
- Australian English localized audio Captcha sounds
- Australian English localized Captcha codes
Australian English 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 Australian English 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 Australian English --> <BotDetect:WebFormsCaptcha ID="ExampleCaptcha" runat="server" Locale="en-AU" />
or the page code-behind:[C#] // Set the Captcha instance Locale to Australian English ExampleCaptcha.Locale = "en-AU";
[VB.NET] ' Set the Captcha instance Locale to Australian English ExampleCaptcha.Locale = "en-AU"
or Locale-dependent Captcha strings can be configured on application level in the
<botDetect>
Web.config configuration section:<botDetect locale="en-AU"
- In Java applications, you can use either the application
web.xml
configuration file setting:<context-param> <param-name>BDC_locale</param-name> <param-value>en-AU</param-value> </context-param>
or the Captcha object instance-specific value:exampleCaptcha.setLocale("en-AU");
or Standard / Facelets JSF Captcha Tag page source:<botDetect:jsfCaptcha id="exampleCaptcha" locale="en-AU"
or JSP Captcha Tag page source:<botDetect:captcha id="exampleCaptcha" locale="en-AU"
- 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 Australian English BotDetect.Locale = "en-AU"
or the Captcha object instance-specific value:<% Dim ExampleCaptcha : Set ExampleCaptcha = (New Captcha)("ExampleCaptcha") ExampleCaptcha.UserInputID = "CaptchaCode" ' Set the Captcha object instance Locale to Australian English ExampleCaptcha.Locale = "en-AU" 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 Australian English $BDC_CaptchaConfig->Locale = 'en-AU';
or the Captcha object instance-specific value:<?php $ExampleCaptcha = new Captcha("ExampleCaptcha"); $ExampleCaptcha->UserInputID = "CaptchaCode"; // Set the Captcha object instance Locale to Australian English $ExampleCaptcha->Locale = 'en-AU'; echo $ExampleCaptcha->Html(); ?>
Australian English Localized Audio CAPTCHA Sounds
Example audio Captcha sounds generated by BotDetect using the Latin Locale setting can be heard in the BotDetect Captcha features demo
To use BotDetect sounds localized for the Australian English Captcha Locale, you should also download the Australian English Pronunciation Sound Package and deploy the Australian English Pronunciation Sound Package and deploy the .bdsp
file to the BotDetectSounds folder your application uses:
Australian English Localized CAPTCHA Codes
The en-AU
Captcha locale uses the default Latin character set, consisting of 26 characters.
CodeStyle.Alpha Australian English CAPTCHA Characters
Unicode code point | Name | Character |
---|---|---|
0x0041 |
a | A |
0x0042 |
bee | B |
0x0043 |
cee | C |
0x0044 |
dee | D |
0x0045 |
e | E |
0x0046 |
ef | F (not used) |
0x0047 |
gee | G (not used) |
0x0048 |
(h)aitch | H |
0x0049 |
i | I (not used) |
0x004A |
jay | J |
0x004B |
kay | K |
0x004C |
el | L (not used) |
0x004D |
em | M |
0x004E |
en | N |
0x004F |
o | O |
0x0050 |
pee | P |
0x0051 |
cue | Q (not used) |
0x0052 |
ar | R |
0x0053 |
ess | S |
0x0054 |
tee | T |
0x0055 |
u | U |
0x0056 |
vee | V |
0x0057 |
double-u | W |
0x0058 |
ex | X |
0x0059 |
wy(e) | Y |
0x005A |
zed | Z |
CodeStyle.Numeric Australian English CAPTCHA Characters
Unicode code point | Name | Character |
---|---|---|
0x0030 |
zero | 0 |
0x0031 |
one | 1 |
0x0032 |
two | 2 |
0x0033 |
three | 3 |
0x0034 |
four | 4 |
0x0035 |
five | 5 |
0x0036 |
six | 6 |
0x0037 |
seven | 7 (not used) |
0x0038 |
eight | 8 |
0x0039 |
nine | 9 |
CodeStyle.Alphanumeric Australian English CAPTCHA Characters
Unicode code point | Name | Character |
---|---|---|
0x0041 |
a | A |
0x0042 |
bee | B |
0x0043 |
cee | C |
0x0044 |
ded | D |
0x0045 |
e | E |
0x0046 |
ef | F (not used) |
0x0047 |
gee | G (not used) |
0x0048 |
(h)aitch | H |
0x0049 |
i | I (not used) |
0x004A |
jay | J |
0x004B |
kay | K |
0x004C |
el | L (not used) |
0x004D |
em | M |
0x004E |
en | N |
0x004F |
o | O (not used) |
0x0050 |
pee | P |
0x0051 |
cue | Q (not used) |
0x0052 |
ar | R |
0x0053 |
ess | S |
0x0054 |
tee | T |
0x0055 |
u | U |
0x0056 |
vee | V |
0x0057 |
double-u | W |
0x0058 |
ex | X |
0x0059 |
wy(e) | Y |
0x005A |
zed | Z (not used) |
0x0030 |
zero | 0 (not used) |
0x0031 |
one | 1 (not used) |
0x0032 |
two | 2 (not used) |
0x0033 |
three | 3 |
0x0034 |
four | 4 |
0x0035 |
five | 5 |
0x0036 |
six | 6 |
0x0037 |
seven | 7 (not used) |
0x0038 |
eight | 8 |
0x0039 |
nine | 9 |
Canadian English CAPTCHA
Captcha Locale overview:
Language | Country | BotDetect Locale settings |
---|---|---|
English | Canada | en-CA |
Examples and specifications of individual Captcha feature localizations:
- Canadian English localized Captcha images
- Canadian English localized audio Captcha sounds
- Canadian English localized Captcha codes
Canadian English 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 Canadian English 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 Canadian English --> <BotDetect:WebFormsCaptcha ID="ExampleCaptcha" runat="server" Locale="en-CA" />
or the page code-behind:[C#] // Set the Captcha instance Locale to Canadian English ExampleCaptcha.Locale = "en-CA";
[VB.NET] ' Set the Captcha instance Locale to Canadian English ExampleCaptcha.Locale = "en-CA"
or Locale-dependent Captcha strings can be configured on application level in the
<botDetect>
Web.config configuration section:<botDetect locale="en-CA"
- In Java applications, you can use either the application
web.xml
configuration file setting:<context-param> <param-name>BDC_locale</param-name> <param-value>en-CA</param-value> </context-param>
or the Captcha object instance-specific value:exampleCaptcha.setLocale("en-CA");
or Standard / Facelets JSF Captcha Tag page source:<botDetect:jsfCaptcha id="exampleCaptcha" locale="en-CA"
or JSP Captcha Tag page source:<botDetect:captcha id="exampleCaptcha" locale="en-CA"
- 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 Canadian English BotDetect.Locale = "en-CA"
or the Captcha object instance-specific value:<% Dim ExampleCaptcha : Set ExampleCaptcha = (New Captcha)("ExampleCaptcha") ExampleCaptcha.UserInputID = "CaptchaCode" ' Set the Captcha object instance Locale to Canadian English ExampleCaptcha.Locale = "en-CA" 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 Canadian English $BDC_CaptchaConfig->Locale = 'en-CA';
or the Captcha object instance-specific value:<?php $ExampleCaptcha = new Captcha("ExampleCaptcha"); $ExampleCaptcha->UserInputID = "CaptchaCode"; // Set the Captcha object instance Locale to Canadian English $ExampleCaptcha->Locale = 'en-CA'; echo $ExampleCaptcha->Html(); ?>
Canadian English Localized Audio CAPTCHA Sounds
Example audio Captcha sounds generated by BotDetect using the Latin Locale setting can be heard in the BotDetect Captcha features demo
To use BotDetect sounds localized for the Canadian English Captcha Locale, you should also download the Canadian English 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 theweb.xml
configuration file setting. - ASP Classic applications use
Redistribute\BotDetectSounds
in the BotDetect installation folder by default. A custom folder can be specified in theBotDetect/CaptchaConfig.asp
file. - PHP applications always use
lib/botdetect/Resources/Sounds
.
Canadian English Localized CAPTCHA Codes
The en-CA
Captcha locale uses the default Latin character set, consisting of 26 characters.
CodeStyle.Alpha Canadian English CAPTCHA Characters
Unicode code point | Name | Character |
---|---|---|
0x0041 |
a | A |
0x0042 |
bee | B |
0x0043 |
cee | C |
0x0044 |
dee | D |
0x0045 |
e | E |
0x0046 |
ef | F (not used) |
0x0047 |
gee | G (not used) |
0x0048 |
(h)aitch | H |
0x0049 |
i | I (not used) |
0x004A |
jay | J |
0x004B |
kay | K |
0x004C |
el | L (not used) |
0x004D |
em | M |
0x004E |
en | N |
0x004F |
o | O |
0x0050 |
pee | P |
0x0051 |
cue | Q (not used) |
0x0052 |
ar | R |
0x0053 |
ess | S |
0x0054 |
tee | T |
0x0055 |
u | U |
0x0056 |
vee | V |
0x0057 |
double-u | W |
0x0058 |
ex | X |
0x0059 |
wy(e) | Y |
0x005A |
zed | Z |
CodeStyle.Numeric Canadian English CAPTCHA Characters
Unicode code point | Name | Character |
---|---|---|
0x0030 |
zero | 0 |
0x0031 |
one | 1 |
0x0032 |
two | 2 |
0x0033 |
three | 3 |
0x0034 |
four | 4 |
0x0035 |
five | 5 |
0x0036 |
six | 6 |
0x0037 |
seven | 7 (not used) |
0x0038 |
eight | 8 |
0x0039 |
nine | 9 |
CodeStyle.Alphanumeric Canadian English CAPTCHA Characters
Unicode code point | Name | Character |
---|---|---|
0x0041 |
a | A |
0x0042 |
bee | B |
0x0043 |
cee | C |
0x0044 |
ded | D |
0x0045 |
e | E |
0x0046 |
ef | F (not used) |
0x0047 |
gee | G (not used) |
0x0048 |
(h)aitch | H |
0x0049 |
i | I (not used) |
0x004A |
jay | J |
0x004B |
kay | K |
0x004C |
el | L (not used) |
0x004D |
em | M |
0x004E |
en | N |
0x004F |
o | O (not used) |
0x0050 |
pee | P |
0x0051 |
cue | Q (not used) |
0x0052 |
ar | R |
0x0053 |
ess | S |
0x0054 |
tee | T |
0x0055 |
u | U |
0x0056 |
vee | V |
0x0057 |
double-u | W |
0x0058 |
ex | X |
0x0059 |
wy(e) | Y |
0x005A |
zed | Z (not used) |
0x0030 |
zero | 0 (not used) |
0x0031 |
one | 1 (not used) |
0x0032 |
two | 2 (not used) |
0x0033 |
three | 3 |
0x0034 |
four | 4 |
0x0035 |
five | 5 |
0x0036 |
six | 6 |
0x0037 |
seven | 7 (not used) |
0x0038 |
eight | 8 |
0x0039 |
nine | 9 |
Indian English CAPTCHA
Captcha Locale overview:
Language | Country | BotDetect Locale settings |
---|---|---|
English | India | en-IN |
Examples and specifications of individual Captcha feature localizations:
- Indian English localized Captcha images
- Indian English localized audio Captcha sounds
- Indian English localized Captcha codes
Indian English 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 Indian English 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 Indian English --> <BotDetect:WebFormsCaptcha ID="ExampleCaptcha" runat="server" Locale="en-IN" />
or the page code-behind:[C#] // Set the Captcha instance Locale to Indian English ExampleCaptcha.Locale = "en-IN";
[VB.NET] ' Set the Captcha instance Locale to Indian English ExampleCaptcha.Locale = "en-IN"
or Locale-dependent Captcha strings can be configured on application level in the
<botDetect>
Web.config configuration section:<botDetect locale="en-IN"
- In Java applications, you can use either the application
web.xml
configuration file setting:<context-param> <param-name>BDC_locale</param-name> <param-value>en-IN</param-value> </context-param>
or the Captcha object instance-specific value:exampleCaptcha.setLocale("en-IN");
or Standard / Facelets JSF Captcha Tag page source:<botDetect:jsfCaptcha id="exampleCaptcha" locale="en-IN"
or JSP Captcha Tag page source:<botDetect:captcha id="exampleCaptcha" locale="en-IN"
- 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 Indian English BotDetect.Locale = "en-IN"
or the Captcha object instance-specific value:<% Dim ExampleCaptcha : Set ExampleCaptcha = (New Captcha)("ExampleCaptcha") ExampleCaptcha.UserInputID = "CaptchaCode" ' Set the Captcha object instance Locale to Indian English ExampleCaptcha.Locale = "en-IN" 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 Indian English $BDC_CaptchaConfig->Locale = 'en-IN';
or the Captcha object instance-specific value:<?php $ExampleCaptcha = new Captcha("ExampleCaptcha"); $ExampleCaptcha->UserInputID = "CaptchaCode"; // Set the Captcha object instance Locale to Indian English $ExampleCaptcha->Locale = 'en-IN'; echo $ExampleCaptcha->Html(); ?>
Indian English Localized Audio CAPTCHA Sounds
Example audio Captcha sounds generated by BotDetect using the Latin Locale setting can be heard in the BotDetect Captcha features demo
To use BotDetect sounds localized for the Indian English Captcha Locale, you should also download the Indian English Pronunciation Sound Package and deploy the Indian English Pronunciation Sound Package and deploy the .bdsp
file to the BotDetectSounds folder your application uses:
Indian English Localized CAPTCHA Codes
The en-IN
Captcha locale uses the default Latin character set, consisting of 26 characters.
CodeStyle.Alpha Indian English CAPTCHA Characters
Unicode code point | Name | Character |
---|---|---|
0x0041 |
a | A |
0x0042 |
bee | B |
0x0043 |
cee | C |
0x0044 |
dee | D |
0x0045 |
e | E |
0x0046 |
ef | F (not used) |
0x0047 |
gee | G (not used) |
0x0048 |
(h)aitch | H |
0x0049 |
i | I (not used) |
0x004A |
jay | J |
0x004B |
kay | K |
0x004C |
el | L (not used) |
0x004D |
em | M |
0x004E |
en | N |
0x004F |
o | O |
0x0050 |
pee | P |
0x0051 |
cue | Q (not used) |
0x0052 |
ar | R |
0x0053 |
ess | S |
0x0054 |
tee | T |
0x0055 |
u | U |
0x0056 |
vee | V |
0x0057 |
double-u | W |
0x0058 |
ex | X |
0x0059 |
wy(e) | Y |
0x005A |
zed | Z |
CodeStyle.Numeric Indian English CAPTCHA Characters
Unicode code point | Name | Character |
---|---|---|
0x0030 |
zero | 0 |
0x0031 |
one | 1 |
0x0032 |
two | 2 |
0x0033 |
three | 3 |
0x0034 |
four | 4 |
0x0035 |
five | 5 |
0x0036 |
six | 6 |
0x0037 |
seven | 7 (not used) |
0x0038 |
eight | 8 |
0x0039 |
nine | 9 |
CodeStyle.Alphanumeric Indian English CAPTCHA Characters
Unicode code point | Name | Character |
---|---|---|
0x0041 |
a | A |
0x0042 |
bee | B |
0x0043 |
cee | C |
0x0044 |
ded | D |
0x0045 |
e | E |
0x0046 |
ef | F (not used) |
0x0047 |
gee | G (not used) |
0x0048 |
(h)aitch | H |
0x0049 |
i | I (not used) |
0x004A |
jay | J |
0x004B |
kay | K |
0x004C |
el | L (not used) |
0x004D |
em | M |
0x004E |
en | N |
0x004F |
o | O (not used) |
0x0050 |
pee | P |
0x0051 |
cue | Q (not used) |
0x0052 |
ar | R |
0x0053 |
ess | S |
0x0054 |
tee | T |
0x0055 |
u | U |
0x0056 |
vee | V |
0x0057 |
double-u | W |
0x0058 |
ex | X |
0x0059 |
wy(e) | Y |
0x005A |
zed | Z (not used) |
0x0030 |
zero | 0 (not used) |
0x0031 |
one | 1 (not used) |
0x0032 |
two | 2 (not used) |
0x0033 |
three | 3 |
0x0034 |
four | 4 |
0x0035 |
five | 5 |
0x0036 |
six | 6 |
0x0037 |
seven | 7 (not used) |
0x0038 |
eight | 8 |
0x0039 |
nine | 9 |
Current BotDetect Versions
-
BotDetect ASP.NET CAPTCHA
2019-07-22v4.4.2 -
BotDetect Java CAPTCHA
2019-07-22v4.0.Beta3.7 -
BotDetect PHP CAPTCHA
2019-07-22v4.2.5