thiagocavaloti / recaptcha

Automatically exported from code.google.com/p/recaptcha
0 stars 0 forks source link

Lack of Language Property in Recapcha for .Net #67

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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

Attachments:

GoogleCodeExporter commented 9 years ago
Duplicate with issue 22.

Original comment by adrian.g...@gmail.com on 24 May 2010 at 4:56