[EMAIL PROTECTED] wrote: > trying to generate a dictionary file, which is in latin (language > code: la) i was trying > aspell --lang=la create master ./latin < latin-spaceseperated.lst > > where latin-spaceseperated.lst is a file which holds latin > vocabulary, space seperated. > the list of words is from > http://kufacts.cc.ukans.edu/ftp/pub/history/Europe/Medieval/aids/latwords.html > > besides the above syntax doesn't work for me > Error: The language "" is not known. This is probably becuase the > file "/usr/local/share/aspell/la.dat" can not be opened for reading.
Salve! First, the convention is to use the full name of the language, i.e. "latin", rather than the abbreviation "la". You need to create the file latin.dat, and specify a few parameters for this language. Look at the other languages' .dat files under /usr/local/share/aspell/ and you will get the idea. Reading the manual on http://aspell.net/ is also recommended. In the file latin.dat, store at least these two lines: name latin charset iso8859-1 If you don't have permission to create files in that directory, you can store your latin.dat in your current directory, and run aspell like this: aspell --local-data-dir=./ --lang=latin create master <sourcefile If you're into Latin, you should also take a look at the Latin Wikipedia, http://la.wikipedia.com/ -- Lars Aronsson ([EMAIL PROTECTED]) Aronsson Datateknik Teknikringen 1e, SE-583 30 Linuxk�ping, Sweden tel +46-70-7891609 http://aronsson.se/ http://elektrosmog.nu/ http://susning.nu/ _______________________________________________ Aspell-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/aspell-user
