-
Apologies in advance for my ignorance in this area. I'll get straight to my point: I would like to investigate how I could contribute to this project and add the characters for my native language. I believe that 'Dictionary creation' is what I need? I have had a look at the section on dictionary creation in the repo and (as someone with no experience here) I'm struggling to understand what exactly I need to do and why. Could somebody please explain (or send a resource) what is actually required in order to add characters from a language that is currently not included in the app? I can see some steps to follow here but, again, I'm not able to conceptualise exactly what's required of me and why. Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
What you need is a wordlist like this example. You can find some more information in the dictionaries repo. Once you have the list, you use the AOSP dicitonary tools to compile a dictionary from the wordlist, like If you know how to use python, you can try the (still a little experimental) scripts for creating a wordlist from a list of sentences or words. |
Beta Was this translation helpful? Give feedback.
-
Hi @Helium314, Thank you for maintaining this great piece of FOSS software! I have one question related to the topic. There's a dictionary of a language I would like to use in the dictionaries' repo, but it's in Cyrillic script, while I would like it to use in Latin script. As I never did something related to this, what do you suggest being the best/fastest approach to contribute and solve this, i.e. taking the existing dictionary in one script and transforming it in another? |
Beta Was this translation helpful? Give feedback.
What you need is a wordlist like this example. You can find some more information in the dictionaries repo.
Once you have the list, you use the AOSP dicitonary tools to compile a dictionary from the wordlist, like
java -jar dicttool_aosp.jar makedict -s <language>_wordlist.combined -d main_<language>.dict
.If you know how to use python, you can try the (still a little experimental) scripts for creating a wordlist from a list of sentences or words.