summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2008-10-08 22:50:16 +0000
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2008-10-08 22:50:16 +0000
commit58dc193312e27d25c0394e4fcb7a6eed7301b1ec (patch)
treef36e45a693b16fbf643e8c168180f02343b38431 /tools
parentf2245c695c43045dbdc825289307099c9c4559a2 (diff)
downloadcups-58dc193312e27d25c0394e4fcb7a6eed7301b1ec.tar.gz
Merge changes from CUPS 1.4svn-r8033.
git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@1003 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'tools')
-rwxr-xr-xtools/checkpo22
1 files changed, 0 insertions, 22 deletions
diff --git a/tools/checkpo b/tools/checkpo
deleted file mode 100755
index 9746ee7d9..000000000
--- a/tools/checkpo
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-#
-# Check .po files to see if there are untranslated or fuzzy strings.
-#
-# Usage: checkpo filename.po [ ... filenameN.po]
-#
-
-if test $# = 1; then
- echo Usage: checkpo filename.po ... filenameN.po
- exit 1
-fi
-
-echo "Catalog Untrans Fuzzy"
-echo "-------------------- ------- -------"
-
-for file in $*; do
- untranslated=`msgattrib --untranslated $file | grep 'msgid "..*"' | wc -l`
- fuzzy=`grep fuzzy $file | wc -l`
-
- printf "%-20.20s %7d %7d\n" $file $untranslated $fuzzy
-done
-