How can we perform Internationalization Testing of a S/W product?How will we set up the Test Environment?

Questions by villjuj   answers by villjuj

Showing Answers 1 - 1 of 1 Answers

This Can be done through by Resource Bundle...

Internationalization "118n" refers to the process of designing, developing and engineering the product that can be adaptable to various locales and regions without further any engineering changes.

Locale: A Locale consists of basic components such as language, territory and code page. The main objective of "i18n" is to externalize all "cultural specific information" form the code which means this data is to be loaed at run time so that, the software will behave appropriately based on the locale set/installed to the client machine.

A resource bundle contains locale-specific objects, for example strings representing messages to be displayed in the application. The idea is to load a specific bundle of resources, based on a particular locale.

the Sample resource bundle properties files is

#German greeting files(greet_de.properties)
#Japan greeting files(greet_de.properties)
#English greeting file(greet_en.properties)
Morn=Good Morning
The lower case 'de','ja','en represents the language

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions