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
12 lines
204 B
Bash
Executable File
12 lines
204 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if zenity --entry \
|
|
--title="Lisää syöte" \
|
|
--text="Syötä _salasanasi:" \
|
|
--entry-text "salasana" \
|
|
--hide-text; then
|
|
echo $?
|
|
else
|
|
echo "Salasanaa ei syötetty"
|
|
fi
|