I decided to start a series of Tips&Tricks posts that anyone can use for fast 18n bug finding in their application. As you can know the speed is really important when it comes on solving bugs.

What is an altered English dictionary? it's a virtual translation of your English translatable strings to English but using characters from other languages that are similar to the ones from English.... shortly it's a find-and-replace by character.

Stage #1</h3>
Take a look at my pangram</a> example:
Original text: "The quick brown fox jumps over the lazy dog</span></strong>"</address>
Altered text: "Tђę qنicķ břø̊ώn fø̊ㄨ jنmpș ø̊vęř țђę ľдźע đø̊ǥ.</strong></span>"</address>You can still use the application even if you do know only English but you'll be able to see if you have i18n bugs inside.

You'll discover the part of your application that are not using Unicode very fast this way because there is no way of displaying these characters using a single code page.

This is going to help you find hard corded strings that where not translated.

Stage #2</h3>
You can extend the text modification a little bit in order to test for some other issues like:
* UI doesn't trim longer texts. As you can see below adding special markers at the start and the end of the string will undercover these much faster.
* Font size is appropriate for Arabic and complex East-Asian languages. Just before the end of the string are the most complex Asian symbol. Can you differentiate the strokes? if not you should really consider increasing the default font size.
Altered text stage 2: "←Tђę qنicķ břø̊ώn fø̊ㄨ jنmpș ø̊vęř țђę ľдźע đø̊ǥ. 齉龘→</span></strong>"</address>
</address>
You really should pass the above tests before starting the translations. If you do so this will pay-off several times later in the localization process.</span></address></blockquote>
License: you can use the above list of replacements or even request my own python replacement routine. All I request is to send back some feedback and maybe some hints on how to improve the list.
</address>