mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
28 lines
1.0 KiB
Bash
Executable File
28 lines
1.0 KiB
Bash
Executable File
#!/bin/sh
|
|
###########################################################################
|
|
# create_new_ts.sh
|
|
# ---------------------
|
|
# Date : January 2008
|
|
# Copyright : (C) 2008 by Tim Sutton
|
|
# Email : tim at kartoza dot com
|
|
###########################################################################
|
|
# #
|
|
# This program is free software; you can redistribute it and/or modify #
|
|
# it under the terms of the GNU General Public License as published by #
|
|
# the Free Software Foundation; either version 2 of the License, or #
|
|
# (at your option) any later version. #
|
|
# #
|
|
###########################################################################
|
|
|
|
|
|
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
|