I'm trying to internationalize a Django app by following the wonderful Django documentation. The problem is when I try to run command to create language files:
python manage.py makemessages -l fr
It outputs an error :
CommandError: Can't find msguniq. Make sure you have GNU gettext tools 0.15 or newer installed.
My configuration :
Install gettext GNU tools with Homebrew using Terminal
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install gettext
brew link gettext --force