mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
13 lines
192 B
Bash
Executable File
13 lines
192 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -z "$1" ] ; then
|
|
echo
|
|
echo "Usage : $(basename $0) [Locale]"
|
|
echo "Examples :"
|
|
echo "$(basename $0) en_GB"
|
|
echo
|
|
exit 0
|
|
fi
|
|
|
|
$(dirname $0)/update_ts_files.sh -a $1
|