The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 1 | <!-- This is a sample wordlist that can be converted to a binary dictionary |
| 2 | for use by the Latin IME. |
| 3 | The format of the word list is a flat list of word entries. |
| 4 | Each entry has a frequency between 255 and 0. |
| 5 | Highest frequency words get more weight in the prediction algorithm. |
| 6 | You can capitalize words that must always be capitalized, such as "January". |
| 7 | You can have a capitalized and a non-capitalized word as separate entries, |
| 8 | such as "robin" and "Robin". |
| 9 | --> |
| 10 | <wordlist> |
| 11 | <w f="255">this</w> |
| 12 | <w f="255">is</w> |
| 13 | <w f="128">sample</w> |
| 14 | <w f="1">wordlist</w> |
| 15 | </wordlist> |
| 16 | |