A <field> can contain optional <translate> elements to convert the field value to another value. <translate> elements are typically used to force the field to all uppercase, or to replace aliases with a canonical value.
For example, the following two <translate> elements convert “Acme Corp.” and “Acme Corporation” to “Acme”:
<translate from="Acme Corp." to="Acme"/> <translate from="Acme Corporation" to="Acme"/>
Fields that match the from value will be translated. (Default=null)
Fields that match the from value will be translated to this string. (Default=null)
Translate the field to uppercase or lowercase. Case conversion occurs before translation. For example, force-letter-case="uppercase" converts the field value to all uppercase. (By default, there is no case conversion.)