marketer
marketer

Reputation: 43737

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?

Upvotes: 6

Views: 1326

Answers (4)

camillobruni
camillobruni

Reputation: 2318

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.

Upvotes: 1

Jas Panesar
Jas Panesar

Reputation: 6639

As a side note to the suggested packages above, you may want to create and store all of your language content in database and then generate the resource bundle files. This way you can have a central interface to manage it all but still enjoy the performance of resource bundles..

good luck!

Upvotes: 0

Luke Bayes
Luke Bayes

Reputation: 3284

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.

Upvotes: 1

dirkgently
dirkgently

Reputation: 111298

How about the Globalization package from AS Foundry?

Upvotes: 1

Related Questions