Welcome to mirror list, hosted at ThFree Co, Russian Federation.

locales-contributors « scripts - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4ddf5cdd217fdf8f61ce5299f5f8c494b45d5943 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
# Do not run as CGI
if [ -n "$GATEWAY_INTERFACE" ] ; then
    echo 'Can not invoke as CGI!'
    exit 1
fi

for x in po/*.po  ; do
    grep 'Team' $x | sed 's/.*: \(.*\)<.*/\1/'
    git shortlog -sne --no-merges -- $x | grep '^  [ 0-9][0-9]\{3\}'
done