QUESTION:how to make a glossary with wordlist and dictionary file?

Index » Learning resources

  • 1
 
Reply #1 - 2013 June 30, 3:38 am
clemens New member
From: Kyoto Registered: 2009-12-29 Posts: 3

Hello,

I was wondering if, having a wordlist, let's say on a .xls file, there was a way to generate a glossary/xls file that had on one column had the actual words of the wordlist and on the next one the dictionary entry taken from a stardict/goldendict/babylon/lingvo or whatever digital dictionary.
I am asking this specifically in order to make custom anki decks, but I think this type of problem could be common with anyone who wants to make sub-glossaries, such as the words present in one chapter of a textbook, or the words in a novel.
Cheers,

Clemens

Reply #2 - 2013 June 30, 5:15 am
Onara Member
From: In the kanji zone Registered: 2012-07-11 Posts: 53

Try "rikaichan" if you're using Firefox. It gives you a definition of kanji or kanjicompounds when you hover over it with your cursor. If you adjust the settings you can press "S" and the word/kanji gets saved into a text file in two neat columns. You can then transfer it to an excel sheet if you like. Oh and it also recognizes hiragana and katakana words.

Last edited by Onara (2013 June 30, 5:16 am)

Reply #3 - 2013 June 30, 7:02 am
RawToast お巡りさん
From: UK Registered: 2012-09-03 Posts: 431 Website

Perhaps JGlossator is what you want:
http://jglossator.sourceforge.net/

Advertising (register and sign in to hide this)
JapanesePod101 Sponsor
 
Reply #4 - 2013 June 30, 8:48 am
lauri_ranta Member
Registered: 2012-03-31 Posts: 139 Website

Epwing2Anki is a Windows program that takes a text file for vocabulary items as input and generates a TSV file that can be imported to Anki.

Or if you use OS X or GNU/Linux, you can paste something like this in a terminal application:

curl ftp://ftp.monash.edu.au/pub/nihongo/edict|iconv -f euc-jp -t utf-8>edict.txt;for w in $(<words.txt);do awk -v "v=$w" '$1==v' edict.txt;done

(Where words.txt contains one word per line.)

Last edited by lauri_ranta (2013 August 10, 9:16 am)

Reply #5 - 2013 June 30, 9:06 am
cb4960 Member
From: Los Angeles Registered: 2007-06-22 Posts: 917

RawToast wrote:

Perhaps JGlossator is what you want:
http://jglossator.sourceforge.net/

For this kind of situation, I would use Epwing2Anki instead.

Reply #6 - 2013 June 30, 2:21 pm
clemens New member
From: Kyoto Registered: 2009-12-29 Posts: 3

Thank you all for the nice replies.
Jglossator and Epwing2Anki are two pieces of software that were unknown to me and they both seem very useful.
Epwing2Anki especially seems to do exactly what I was looking for.
I would like to ask a secondary question in this regard: does anyone know how to convert stardict/babylon dictionaries to Epwing? Those are the main dictionaries I am using (although I also have many epwing ones)

The script solution is also very nice, but I am not sure hot to use it in case of CEDICT and KEDICT. I do use Debian, but unfortunately I am still just a beginner.
What should I do?

  • 1