From e03c38717bed6ab729e083fb2694ff44394645ef Mon Sep 17 00:00:00 2001 From: Christoph Sommer Date: Sun, 1 Apr 2007 22:34:56 +0000 Subject: [PATCH] Added script that normalizes all .po files in the current directory, i.e. keeps them in sync with messages.pot and enforces a constant sort order for easier diffs SVN-Revision: 4957 --- tools/normalize-po-files.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 tools/normalize-po-files.sh diff --git a/tools/normalize-po-files.sh b/tools/normalize-po-files.sh new file mode 100755 index 000000000..563fb6c0d --- /dev/null +++ b/tools/normalize-po-files.sh @@ -0,0 +1,3 @@ +#!/bin/sh +find -iname '*.po' | xargs -I xx msgmerge --backup=off --no-fuzzy-matching --no-wrap -U xx messages.pot + -- 2.11.0