#!/bin/sh #$Id: gettext.sh,v 1.1 2010/03/29 22:48:04 khorben Exp $ #variables . "../config.sh" DEBUG="_debug" INSTALL="install -m 0644" LOCALEDIR="$PREFIX/share/locale" MKDIR="mkdir -p" MSGFMT="msgfmt" MSGINIT="msginit" MSGMERGE="msgmerge" POTFILES="POTFILES" XGETTEXT="xgettext" #functions #usage _usage() { echo "Usage: ./gettext.sh target" 1>&2 return 1 } #debug _debug() { echo $@ $@ } #gettext_mo _gettext_mo() { lang="$2" if [ -f "$lang.po" ]; then $DEBUG $MSGMERGE -U "$lang.po" "$1.pot" || return 1 else $DEBUG $MSGINIT -o "$lang.po" -i "$1.pot" || return 1 fi $DEBUG $MSGFMT -c -v -o "$lang.mo" "$lang.po" || return 1 } #gettext_pot _gettext_pot() { package="$1" $DEBUG $XGETTEXT -d "$package" -o "$package.pot" --keyword="_" \ -f "$POTFILES" || return 1 } #main if [ $# -eq 4 -a "$1" = "-p" -a "$3" = "install" ]; then #PREFIX="$2" XXX doesn't work atm lang="${4%%.mo}" $DEBUG $MKDIR "$LOCALEDIR/$lang/LC_MESSAGES" || return 2 $DEBUG $INSTALL "$4" "$LOCALEDIR/$lang/LC_MESSAGES/$PACKAGE.mo" \ || return 2 return 0 fi if [ $# -ne 1 ]; then _usage return $? fi case "$1" in *.mo) _gettext_mo "$PACKAGE" "${1%%.mo}" || return 2 ;; *.pot) _gettext_pot "${1%%.pot}" || return 2 ;; *) return 2 ;; esac return 0