#!/bin/sh

#ubuntu-firefox
if [ "`which firefox`" != "" ];then
  firefox -chrome chrome://translation/content/translation.xul
#ubuntu-thunderbird
elif [ "`which mozilla-thunderbird`" != "" ];then
  mozilla-thunderbird -chrome chrome://translation/content/translation.xul
#debian-iceweasel
#elif [ "`which iceweasel`" != "" ];then
#  iceweasel -chrome chrome://translation/content/translation.xul
#debian-icedove
#elif [ "`which icedove`" != "" ];then
#  icedove -chrome chrome://translation/content/translation.xul
#ubuntu-xulrunner
#elif [ "`which xulrunner`" != "" ];then
#  echo fixme: translation-panel xulrunner support
fi
