Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
341 views

Implementing T9 text prediction

I have a T9 dictionary in memory (trie/hash_map). The dictionary contains word-rating pairs, so when a word is picked from dictionary, its rating increments, and the word-rating pair goes up in the ...
1
vote
0answers
30 views

T9n and hotkeys

In my website every label visible to the user is translated. Translation is done by non-programmers (luckily). In my websites (but this applies to applications too) I would like to have use hot ...
0
votes
1answer
46 views

Where to put my siteLanguage parameter (cross cutting concern?)

In my project every page is translatable in several languages. For that purpose, I pass a sitelanguage parameter to each action. My custom base controller class catches this "siteLanguage" parameter ...