#!/bin/bash

# Sparky Add User is a simply tool which lets you add new user to the system
# Created by Paweł "pavroo" Pijanowski 2013/Oct/28
# Copyright 2013-2019 under the GNU GPL2 License
# Last updated 2019/11/27 by pavroo

# get default's locale file
DEFLOCDIR="/usr/share/sparky/sparky-users"
if [ "`cat /etc/default/locale | grep de`" != "" ]; then
. $DEFLOCDIR/de
elif [ "`cat /etc/default/locale | grep el`" != "" ]; then
. $DEFLOCDIR/el
elif [ "`cat /etc/default/locale | grep es`" != "" ]; then
. $DEFLOCDIR/es
elif [ "`cat /etc/default/locale | grep fr`" != "" ]; then
. $DEFLOCDIR/fr
elif [ "`cat /etc/default/locale | grep hu`" != "" ]; then
. $DEFLOCDIR/hu
elif [ "`cat /etc/default/locale | grep id_ID`" != "" ]; then
. $DEFLOCDIR/id_ID
elif [ "`cat /etc/default/locale | grep it`" != "" ]; then
. $DEFLOCDIR/it
elif [ "`cat /etc/default/locale | grep ja`" != "" ]; then
. $DEFLOCDIR/ja
elif [ "`cat /etc/default/locale | grep pl`" != "" ]; then
. $DEFLOCDIR/pl
elif [ "`cat /etc/default/locale | grep pt_BR`" != "" ]; then
. $DEFLOCDIR/pt_BR
elif [ "`cat /etc/default/locale | grep pt_PT`" != "" ]; then
. $DEFLOCDIR/pt_PT
elif [ "`cat /etc/default/locale | grep ru`" != "" ]; then
. $DEFLOCDIR/ru
else
. $DEFLOCDIR/en
fi

yad --width=600 --height=450 --window-icon=contact-new --image=contact-new\
 --image-on-top --icons --read-dir=/usr/lib/sparkyusers --item-width=100\
 --sort-by-name --center --text="$LOCAL1"\
 --title="$LOCAL2" --no-buttons

exit 0



