Comment #15 on issue 8803 by [email protected]: add Korean spell checking support http://code.google.com/p/chromium/issues/detail?id=8803
Actually, the size limit of BDict is not 128 characters but 128 bytes in UTF-8. When translated to syllable counts, it's ~ 43. Moreover, the current Korean dictionary uses NFD, which makes it even shorter (like ~14 or ~21). Anyway, if there's only one word longer than that, it's ok. BTW, fixing this is not as simple as converting the Korean dictionary to the Bdict format and checking that in. We also want to remove entries for NFC -> NFD conversion because we can do that easily/cheaply. To do that, we have to change our code slightly. Moreover, without Korean segmentation activated, it'll not be very useful. -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings --~--~---------~--~----~------------~-------~--~----~ Automated mail from issue updates at http://crbug.com/ Subscription options: http://groups.google.com/group/chromium-bugs -~----------~----~----~----~------~----~------~--~---
