"YOU AND THE ART OF ONLINE DATING" is the only product on the market that will take you step-by-step through the process of online dating, provide you with the resources to help ensure success. Get it now!
There are several options available. First, to the labels and elements of UI. Here are generally two options possible, you either use resources (*.
Resx) or roll out your own multilingual support on the database level. They both have their advantages and disadvantages. Resoures: + Easy solution, everything is ready for immediate use.
You define a textual resource in a family of files named like Orders.en. Resx, Orders.fr. Resx etc.In code you reference these strings as Resources.Orders.Title.
So it is a simple solution for static elements of UI. + Resource files are basically simple XML documents that can quickly be read and parsed, so not much overhead or performance loss. - If you need to change something, you will have to recompile the project.
That consequently means you will need the development environment (VS) installed for anyone who may consider updating texts. Then, you will also need to deploy the recompiled version again. The same applied for introduction of new languages into the system.
- Will not work for non-technical stuff, since participation of specialists required. Custom database-driven multilingual solution: - Will require some effort and time to design and implement - Every single UI text will be pulled from the database, which means performance drop and extra load on the database + Will allow dynamic on-the-fly change of texts and deletion/addition of new languages.No recompilation or deployment will be required. + Now a huge plus.
Since no technical skills are required to work on texts, you can outsource this work to any location. You may implement a web interface and change tracking system for professional translation service shops to correct your texts and perform translations to any language you need quickly after new texts are discovered. Now to the dynamic texts (actual content).
Here you can either split each text to be stored as an extra record per language in some table or to merge all translations into a single entity. Multiple records: Imagine following database model: Language ----------------- ID Description Translation ------------------ ID FallbackText TranslationText -------------------------------- ID TRID LanguageID Text Order ------------------------------------------------ ID TitleTRID DescriptionTRID RemarkTRID Everywhere in the database where you need to store a multilingual text, you will instead reference some TranslationID. Then dependent on the active language, you system will look for an appropriate translation or, if not found, return a default text (usually set by developers).
Single entity: You keep all translations for a given text in one string by using some means of distinguishing particular translations. XML naturally works here. Order Bestellung Commande Here you database model will be simpler but you will need to parse every single text to extract the needed version.
These are the widely used strategies. Which one will work best for you will depend on your needs and your expected usage scenarios. Hope that helps.
:).
Thanks a lot for the answer .. I think I'll go ahead with Resources (for static text) and multiple record database driven for the actual data. – Lasker Sep 8 '09 at 3:08.
We've had the same conundrum and New in Town has basically given the options. Why we went with the resx option, mainly is because in most cases, especially websites, all that needs to change is the static content, i.e. Labels, UI elements.
If you're working with VS, once you create a page, there is an option to create the resx files for you. This is found in the Generate Local Resource in the Tools options. This will pick up all elements that HAVE ids (this is important), and generate the first resx file for you.
Creating copies of that for different languages is pretty simple after that. Changing the language is as simple as changing your web.config. Example hope that helps.
Thanks for your answer too :) – Lasker Sep 8 '09 at 3:08.
I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.