Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Internationalization for flash applications

I'm working with a flash application (non-flex), and I'd like to support internationalization. In flex there's a nice abstraction ResourceManager in which you provide resource bundles for each locale. Is there any equivalent for actionscript?

like image 374
marketer Avatar asked Mar 17 '09 20:03

marketer


3 Answers

How about the Globalization package from AS Foundry?

like image 57
dirkgently Avatar answered Oct 12 '22 15:10

dirkgently


Haven't used it myself, but this one looks interesting:

http://www.sephiroth.it/weblog/archives/2005/12/actionscript_30_first_attempt.php

It's based on the GNU gettext implementation and tool chain.

like image 31
Luke Bayes Avatar answered Oct 12 '22 15:10

Luke Bayes


We created a nice little tool around gettext:

http://code.google.com/p/asgettext/

With this tool you can easily create multilingual application using a default internationalization tool.

like image 31
camillobruni Avatar answered Oct 12 '22 16:10

camillobruni