The code to add the Language Property in the class RecaptchaControl :
private string lang;
...
[Category("Appearence")]
[DefaultValue("en")]
[Description("The language for the reCAPTCHA control. Currently supported
values are English 'en', Dutch 'nl', French 'fr', German 'de', Portuguese
'pt', Russian 'ru', Spanish 'es' and Turkish 'tr'.")]
public string Lang
{
get { return this.lang; }
set { this.lang = value; }
}
...
protected override void RenderContents(HtmlTextWriter output)
{
...
output.WriteLine("lang : '{0}',", this.lang ?? "en");
...
}
Original issue reported on code.google.com by ver...@gmail.com on 21 Apr 2010 at 3:46
Original issue reported on code.google.com by
ver...@gmail.com
on 21 Apr 2010 at 3:46