...
All CRM.COM terms that appear on screen should be replaced in both .xml and .java files with keys. A key must have the following format: key_<unique_phrase> and should always be in lowercase. i.e. key_priceplan, key_price_plan. A key can only be defined once but it can be used multiple times.
Properties File
Properties file is used to store the keys and their translation. Properties file for English translation is named translation_eng.properties can be found under <project_directory>/Crm/WebContent/labels. Note that all keys must be unique.
Code Block | ||||
---|---|---|---|---|
| ||||
<properties>
<comment>eng Translation</comment>
<entry key="key_life_cycle_state">Life Cycle State</entry>
<entry key="key_all">All</entry>
<entry key="key_n/a">N/A</entry>
<entry key="key_billing_information">Billing Information</entry>
<entry key="key_view">View</entry>
.
.
.
</properties> |
Summary Pages
This section shows how to use the Glossary Mechanism when creating summary pages.
...