I am using google translator api to translate english resource file to spanish. I have around 6000 keys in my resource file. Right now i am passing keys one by one and getting the result. After some frequent hits(after some 1000 keys) to google site i get 403 Terms of service abuse error. Is there any other way i could translate all 6000 key values to spanish? Please help me to resolve this issue. it is urgent.
I am using GoogleTranslateAPI_0.4_alpha API and below is the code
ResXResourceReader rsxr = new ResXResourceReader (filename);
rsxr.UseResXDataNodes=true;
ResXDataNode node;
AssemblyName[] assemblies;
string value=string.Empty;
string comment=string.Empty;
foreach (DictionaryEntry d in rsxr)
{
node = (ResXDataNode)d.Value;
assemblies = Assembly.GetExecutingAssembly ().GetReferencedAssemblies ();
value=node.GetValue (assemblies).ToString ();
try
{
if (!string.IsNullOrEmpty (value))
{
TranslateClient client = new TranslateClient ("my proxy address");
value=client.Translate (value.ToString () ,"en" ,"es");
}
}
catch (Exception ex)
{
value="dummy";
}
}
rsxr.Close ();
Thanks Rmk