Internationalization for Flash Applications

I am working with a flash application (non-flex) and I would like to support internationalization. Flex has a nice ResourceManager abstraction in which you provide resource packages for each locale. Is there an equivalent for actionscript?

+6
flex flash internationalization
source share
4 answers

How about a Globalization package from AS Foundry?

+1
source share

Didn't use it myself, but this one looks interesting:

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

It is based on the GNU implementation of gettext and the toolchain.

+1
source share

We created a small tool around gettext:

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

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

+1
source share

As an additional note to the packages offered above, you may want to create and save all your language content in a database, and then generate resource package files. This way you can have a central interface for managing all of this, but still take advantage of the performance of resource packages.

Good luck

0
source share

All Articles