English 中文(简体)
Tools and methods for localization of ASP.NET application needed
原标题:

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.

问题回答

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

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?

There is a free tool called Resource Translation Helper ( http://www.winking.be/resource-translation-helper )

  1. Install it
  2. Point it to your project directory
  3. Export to excel (.xls)

Give the excel to your translaters and let them update the columns.

  1. Import the updated xls file again

The tool creates also a file to map the resx translation to the excel rows. Don t remove that or you will not be able to import again.

Works very good, but backup your data before adjusting things ;-)

Old question, but I would like to add http://www.zeta-resource-editor.com/index.html Free tool for .NET resource files. This directly edits the resource files, no need to ex-/import.





相关问题
Sharing asp.net resource files between web applications

I have multiple projects that need to share resource files (.resx) Suggestions have been made to move resource files to a separate assembly and have web projects reference it. Is there an example of ...

images added into resx file

This has been a interesting file for me. I found that ,whenever a image is added to this ,the image is actually converted into bytes and stored as data rather than a file. I just want to know the ...

adding different language strings to a single resource file

I have a small application, which includes a resource (.resx) file. This file contains an icon, and a string, which is used by another application. The icon will be displayed on a button, and the ...

ASP.NET MVC - Local Resource Issue

I am having an issue when attempting to override the DisplayNameAttribute in ASP.NET MVC to provide a localized string. The code itself is straightforward and similar to that in another Stackoverflow ...

Editing .resx files on a Mac [closed]

Is there any app that I can use to edit .resx files on a Mac running OSX? I just need to be able to edit string resources. Edit. I know .resx files are XML files. However, I am looking for an app ...

Free/Open Source resx files with Standard Phrases

I was wondering if there are any free/OS resx files for phrases commonly used among websites. For instance, we all use save/submit/retry/cancel/etc. and I d be surprised if there wasn t a library out ...

ASP.NET component to edit .resx files

I m developing a multilingual web site and the localization is done mostly by using .resx files. But now I need to enable users with some permissions to edit resource files online from the web site. ...

热门标签