forked from pool/freeciv
Copy from home:Freespacer:branches:games/freeciv via accept of submit request 32994 revision 2. Request was accepted with message: thanks very much OBS-URL: https://build.opensuse.org/request/show/32994 OBS-URL: https://build.opensuse.org/package/show/games/freeciv?expand=0&rev=9
17 lines
388 B
Bash
17 lines
388 B
Bash
#!/bin/sh
|
|
|
|
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="http://de.freeciv.wikia.com/wiki/Spielanleitung"
|
|
else
|
|
DOCFILE="http://freeciv.wikia.com/wiki/Game_Manual"
|
|
fi
|
|
|
|
call-browser $DOCFILE
|