7a4b17df76
2008-09-18 Tommi Vainikainen <thv@iki.fi> * Makefile.am, fi/fi.po: Added Finnish translation * fi/figures/*.png: Added screenshots * fi/l10n_scripts/*: Added translated screenshot scripts svn path=/trunk/; revision=1442
17 lines
377 B
Bash
Executable File
17 lines
377 B
Bash
Executable File
#!/bin/sh
|
|
|
|
FILE=`zenity --file-selection \
|
|
--title="Valitse tiedosto"`
|
|
|
|
case $? in
|
|
0)
|
|
zenity --text-info \
|
|
--title=$FILE \
|
|
--filename=$FILE \
|
|
--editable 2>/tmp/tmp.txt;;
|
|
1)
|
|
echo "Tiedostoa ei valittu.";;
|
|
-1)
|
|
echo "Tiedostoa ei valittu.";;
|
|
esac
|