diff options
author | Frans Pop <elendil@planet.nl> | 2008-01-28 11:12:02 +0000 |
---|---|---|
committer | Frans Pop <elendil@planet.nl> | 2008-01-28 11:12:02 +0000 |
commit | d563fb382d2d519b1c3545975ae48a6b5cd4ccd6 (patch) | |
tree | db119f0269be8399e850d48fa2879fa57e685207 | |
parent | 3d98c4cf4fd0f5ebfd3e9af6ba163c449697d330 (diff) | |
download | installation-guide-d563fb382d2d519b1c3545975ae48a6b5cd4ccd6.zip |
* Use --previous when updating PO files so translators can see the changes
in a string.
-rw-r--r-- | debian/changelog | 4 | ||||
-rwxr-xr-x | scripts/update_po | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 951b0c425..7f793ae5a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -84,12 +84,14 @@ installation-guide (2007xxxx) UNRELEASED; urgency=low from the known_hosts file * howto, preseed: update for reordering of the installation procedure. * Change build dependency on gs-common to ghostscript. + * Use --previous when updating PO files so translators can see the changes + in a string. [ Colin Watson ] * Use &releasename; rather than hardcoding etch in sources.list recommendation for chroot installs. Closes: #458459. - -- Frans Pop <fjp@debian.org> Sat, 19 Jan 2008 07:57:51 +0100 + -- Frans Pop <fjp@debian.org> Mon, 28 Jan 2008 12:10:09 +0100 installation-guide (20070319) unstable; urgency=low diff --git a/scripts/update_po b/scripts/update_po index 9432c7659..0a8fdd7c4 100755 --- a/scripts/update_po +++ b/scripts/update_po @@ -39,7 +39,7 @@ 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 --backup=simple $PO $POT + msgmerge -q -U --previous --backup=simple $PO $POT RC=$? else # Generate temporary PO file in build directory |