Translated using Weblate (Portuguese)
[phpmyadmin.git] / bin / internal / locales-contributors
blob87e4fd5656a4f770bbf458292bea9a97d853af70
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 resources/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