From b305316c7f78e353c60833e9bf8376e717a5a6ff Mon Sep 17 00:00:00 2001 From: Frans Pop Date: Tue, 27 Oct 2009 14:47:11 +0000 Subject: Use standard width for PO files When updating PO files, set them to a standard width of 79 characters (same as used for l10n-sync for D-I master PO files). --- scripts/update_po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/update_po b/scripts/update_po index 0a8fdd7c4..7871a6060 100755 --- a/scripts/update_po +++ b/scripts/update_po @@ -39,11 +39,11 @@ for POT in `find $PODIR/pot -name "*.pot"` ; do echo "- updating $BASENAME.po" if [ -z "$PO_USEBUILD" ] ; then # Update existing PO file - msgmerge -q -U --previous --backup=simple $PO $POT + msgmerge -q -U --previous --backup=simple -w 79 $PO $POT RC=$? else # Generate temporary PO file in build directory - msgmerge -q $SPO $POT -o $PO + msgmerge -q -w 79 $SPO $POT -o $PO RC=$? fi if [ $RC -ne 0 ] ; then -- cgit v1.2.3