forked from pool/freeciv
19 lines
423 B
Bash
19 lines
423 B
Bash
#!/bin/sh
|
|
|
|
FREECIVDIR=/usr/share/doc/packages/freeciv
|
|
|
|
tmplang="$LANG"
|
|
test "$LC_MESSAGES" != "" && tmplang="$LC_MESSAGES"
|
|
test "$LC_ALL" != "" && tmplang="$LC_ALL"
|
|
test "$LANGUAGE" != "" && tmplang="$LANGUAGE"
|
|
|
|
lang=`echo $tmplang|cut -d "_" -f 1`
|
|
|
|
if [ "$lang" == "de" ]; then
|
|
DOCFILE=$FREECIVDIR/manual.de/trident/game-over.html
|
|
else
|
|
DOCFILE=$FREECIVDIR/manual/isotrident/game.html
|
|
fi
|
|
|
|
call-browser $DOCFILE
|