Translated using Weblate (Korean)
[phpmyadmin.git] / scripts / locales-contributors
blob4236073a139202b4fdeef5b4837d594a104c0e66
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