MacOS – Spanish to English and English to Spanish dictionary for Dictionary app

dictionarylanguagemacos

For quite a while now, I have been looking for English and Spanish conversion dictionaries (both ways) for Apple's native Dictionary application. So far I have not had any success.

Is there any free, decent quality solution such as "New Oxford American Dictionary" and "Dictionnaire de l'Académie Française"?

Any links or information would be highly appreciated.

Best Answer

The latest MacOS versions already include Spanish dictionaries which can be enabled in preferences in the Dictionary.app (+,).

The answer below is for converting and installing third-party dictionaries from other popular formats.

To create a dictionary for the built-in OS X Dictionary.app you will first need pyglossary to convert to the AppleDict format from the input format which can be ABBYY Lingvo DSL, Babylon BGL, Stardict IFO, etc (see all supported formats).

Once the AppleDict source XML is generated, the Apple Dictionary Development Kit is used to generate the native binary files that the Dictionary.app can use.

Proceed as follows:

Installing dependencies

  1. Install Xcode command line tools:

     xcode-select --install
    
  2. Install the Auxiliary Tools for Xcode from https://developer.apple.com/download/more/ — you'll need to login with your iCloud or Apple Developer account. Mount the DMG file by double-clicking it in Finder, and copy the folder Dictionary Development Kit to /Developer/Extras (as root) (or to ~/Developer/Extras as a normal user as pointed out by richard-möhn):

     mkdir -p ~/Developer/Extras/
     cp -r '/Volumes/Additional Tools/Utilities/' ~/Developer/Extras
    
  3. Install Python 3 via homebrew (OS X comes with Python 2.x preinstalled):

     brew install python3
    
  4. Checkout the pyglossary project:

     mkdir -p ~/projects
     git clone --depth 1 https://github.com/ilius/pyglossary.git ~/projects/pyglossary
    
  5. Install lxml and BeautifulSoup, the parsers that pyglossary depends on:

     pip3 install lxml beautifulsoup4
    

Now everything is ready to do the actual conversion.

Performing the Conversion

  1. Convert the source dictionary (in this case Babylon BGL) to AppleDict:

     python3 pyglossary.pyw --read-options=resPath=OtherResources --write-format=AppleDict webster.bgl webster.xml
    

NOTE: This operation can take significant time if the dictionary is big.

  1. Compile the generated AppleDict sources to OS X Dictionary.app binary files. Pyglossary creates the AppleDict sources in a subfolder named the same as the source file.

OPTIONAL: By default the dictionary name will be derived from the file name of the input file. If you want to modify the name to something else then open Makefile in a text editor, and set the title in the DICT_NAME variable (make sure you include the quotes).

    cd webster ### subdir name is derived from the source file
    make
    make install

NOTE: make can take significant time if the dictionary is big. For huge dictionaries it can take over 10 minutes.

make install copies the generated dictionary to ~/Library/Dictionaries. Now if you restart the dictionary app and and open preferences (+,) the new dictionary will appear in the list. Click the checkbox to enable it.

Other formats, for example ABBYY Lingvo DSL require more steps such as re-encoding from UTF-16 to UTF-8. Here is a wrapper script for DSL to AppleDict conversion.

Here are some Free dictionaries in Babylon BGL format. There are also literally hundreds of dictionaries available in DICTD, Stardict and ABBYY Lingvo DSL formats.