Language support, Russian, Japanese, Korean, Chinese

Hello,

We are finishing a new app. This app contains 18 languages.

We use Coronium and we use PushBots, we want to send the push messages in the language of the receiver.

We have a dbase running on the server containing all languages. When we send a query to this dbase and the result is e.g. Cyrillic or japanese, the result is a string containing only questionmarks! Only languages like English, Dutch, German, etc. seem to work fine.

[lua]

coronium.mysql.query( { database = “lang” }, “SELECT * FROM languages” ) to get our records.

if not answer.error then
for _, record in ipairs( answer.result ) do
print( record.text )
end
end

[/lua]

Did you find out how to support non western languages?

It was a Coronium thing, we solved it by having the messages inside the app so it does not go through Coronium,

We wanted a english message send to a swedish friend to be in swedish but they are all pre-defined messages.

Thanks. So you avoided using Coronium for this purpose. 

Coronium is great and works great with languages, somehow the combination Pushbots/Coronium when sending push messages makes some changes to non-latin languages.

Hi,

You may want to run this patch for better language support overall, especially in the database.

https://groups.google.com/d/msg/coroniumio/hmzo-GpLuWU/vCM3ia6rCgAJ

Cheers.

Did you find out how to support non western languages?

It was a Coronium thing, we solved it by having the messages inside the app so it does not go through Coronium,

We wanted a english message send to a swedish friend to be in swedish but they are all pre-defined messages.

Thanks. So you avoided using Coronium for this purpose. 

Coronium is great and works great with languages, somehow the combination Pushbots/Coronium when sending push messages makes some changes to non-latin languages.

Hi,

You may want to run this patch for better language support overall, especially in the database.

https://groups.google.com/d/msg/coroniumio/hmzo-GpLuWU/vCM3ia6rCgAJ

Cheers.