Prepare for version 5.1.3-dev
[phpmyadmin.git] / scripts / locales-contributors
blob4ddf5cdd217fdf8f61ce5299f5f8c494b45d5943
1 #!/bin/sh
2 # Do not run as CGI
3 if [ -n "$GATEWAY_INTERFACE" ] ; then
4 echo 'Can not invoke as CGI!'
5 exit 1
6 fi
8 for x in po/*.po ; do
9 grep 'Team' $x | sed 's/.*: \(.*\)<.*/\1/'
10 git shortlog -sne --no-merges -- $x | grep '^ [ 0-9][0-9]\{3\}'
11 done