aboutsummaryrefslogtreecommitdiffstats
path: root/chk-po
blob: 1535246d03efc384acb0dd0fc7c0b75eba55256a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/bash

# Checks that all msgid strings in .po files are identical in the remove-old-kernels script.
# On error, the string in the offending .po file is printed out.
# Number of strings reported should be identical for all languages.

clear
for pofile in po/*pot po/*po; do
	echo "Checking - ${pofile}"
	entries=0
	while read line ; do
		
		findid="$(echo "$line" | grep '^msgid'|cut -d'"' -f2)"
		[[ ${#findid} = 0 ]] && continue
		((entries++))
		if ! fgrep -q "$findid" remove-old-kernels; then
			echo "${pofile} - ${findid}"
		fi
	done < "${pofile}"
	echo strings - $entries
done