How to convert English text to Spanish text

  • Thread starter Thread starter cmdolcet69
  • Start date Start date
C

cmdolcet69

Is there a class or anything else that i can use to convert English
text to Spanish text in my vb.net programming application?
 
cmdolcet69 said:
Is there a class or anything else that i can use to convert English
text to Spanish text in my vb.net programming application?

There is no such class available in the .NET Framework. Note that
translation between languges is not an easy task. Maybe 3rd-party libraries
exist for this purpose, but I do not know such libraries.
 
Is there a class or anything else that i can use to convert English
text to Spanish text in my vb.net programming application?

There is, but you have to write it!

Sorry, I couldn't resist. Unfortunately, the closet thing that .NET
has is globalization settings, but even then they are a pain to set up
and you still have to supply the translations.

Thanks,

Seth Rowe [MVP]
 
Seth,.

The globalization settings have nothing to do with translations it only
tells which characters and calendars are used and how date and times are
represented in a string.

It is not as easy as you write.

Cor

"rowe_newsgroups" <[email protected]> schreef in bericht
Is there a class or anything else that i can use to convert English
text to Spanish text in my vb.net programming application?

There is, but you have to write it!

Sorry, I couldn't resist. Unfortunately, the closet thing that .NET
has is globalization settings, but even then they are a pain to set up
and you still have to supply the translations.

Thanks,

Seth Rowe [MVP]
 
Cor Ligthert said:
The globalization settings have nothing to do with translations it only
tells which characters and calendars are used and how date and times are
represented in a string.

The "globalization settings" are used to determine which resources should be
loaded (based on the culture).
 
Back
Top