João Martins
unread,Aug 28, 2012, 11:39:38 AM8/28/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-tra...@googlegroups.com
Translate API is returning your text encoded in UTF8, yet you are reading it in Latin1 (ISO-8859-1). For instance, in UTF8, the character 'á' is encoded into two bytes, C3 A1. In ISO-8859-1, C1 is decoded to  and A1 is ¡. Change the encoding of your text reader to UTF8 and it should work.