#!/bin/sh
#pulls all i18n strings out of *.php files in parent directory
#and creates a template .pot file from them
xgettext --keyword=_ -keyword=N_  --default-domain=select_range \
    -C ../*.php --output=select_range.pot
