Check list for Internationalization (I18n)
Last modified on April 2nd, 2009 by Joe.
This check list for Internationalization (I18n) will cater to the need of programmers irrespective of the language java /dot net/ j2ee / any other.
Translatable items
- GUI – Labels and Menu items
- User messages including third party component generated
- Log / system generated messages
- Help – Online help / manual and other deliverable documentation
- Installation notes / guide / setup information
- Symbols (Rs., $, …)
- Icons, Images and Colors
- Sound
- Animation
Formatting and Processing items
- Time, Date, and Calendar
- Numeric, Monetary, and Metric
- Personal Names, Honorifics, and Titles
- Maps / Addresses
- Layout (Like narrow / broad)
- Sound-to-Text / speech recognition
Technical
- Equality checking (String / Character matching)
- Sorting
- Text length / wrapping
- Position / direction of text / objects
- Encoding Methods
- Device Input (Keyboard and Input Methods)
- Device Output (Font Management, Rendering, and Output Methods)
[…] programmer you may tend to do all the formatting using StringBuilder itself. When it comes to internationalization and localization then it is good to use NumberFomat for all your formatting needs. Otherwise, your numbers will not […]
[…] respects internationalization (i18n). It performs the case conversion with respect to your Locale. When you call toLowerCase(), […]