diff options
author | Frans Pop <elendil@planet.nl> | 2009-10-27 14:47:11 +0000 |
---|---|---|
committer | Frans Pop <elendil@planet.nl> | 2009-10-27 14:47:11 +0000 |
commit | b305316c7f78e353c60833e9bf8376e717a5a6ff (patch) | |
tree | 799e246c6a75d67fc082a1f7337c1d4527932bfd /scripts/update_po | |
parent | a46458474920663818fff492b288c16b1aa4bddc (diff) | |
download | installation-guide-b305316c7f78e353c60833e9bf8376e717a5a6ff.zip |
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).
Diffstat (limited to 'scripts/update_po')
-rwxr-xr-x | scripts/update_po | 4 |
1 files changed, 2 insertions, 2 deletions
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 |