views:

68

answers:

2

Hi,

We have a multilingual site that is currently using 2 languages, but with several others coming soon. The site is localized primarily by resx files, but with some localized data in a database.

We need to find some tools to manage localization of the site - something that picks up on changes in resx files so translators will only need to translate new or updated texts.

Any ideas or recommendations? We're also interested in any articles about the logistics of localization if anyone has some.

A: 

An idea might be to have all the localization data the database (or a localization database), this way one could build the localization tools/interface as part of the application and poyentially use it for many applications?

Mark Redman
We started by having all localization in the database, but have moved it into resx files, as most of it is part of the application itself and therefore should be contained within the application. Of course there is still some of the /data/ that needs localizing, and this is still in the database.We would really like to avoid having to build a localization tool ourselves, if we could find a good off the shelf product that supports resx files.
Micael
+1  A: 

Hello, I'm researching this area as we speak and I came across your post. I'm not sure if this is any help but in the past we used RCWinTrans for our localization. This was for mutiple C++/MFC products although it does support .Net . We would have a RCWinTrans project for each language/product we intended to support although you could have multiple languages in a single project. It kept track of state (i.e. not-translated, translated, changed, etc) and would allow us to export the strings to an excel spreadsheet which we could then send onto a translator. They would updated the spreadsheet and we would reimport the data.

Hope this helps, apologies if I'm on the wrong track and I'm teaching grandma to suck egss. I will be creating another thread today with a similar requirement to this btw, but with a few more snagettes - might be worth a look to see if I get any answers. Cheers, Roger

RogerD