Forráskód Böngészése

dpkg-mergechangelogs: add missing call to textdomain()

Raphaël Hertzog 16 éve
szülő
commit
021de2418c
2 módosított fájl, 4 hozzáadás és 0 törlés
  1. 2 0
      debian/changelog
  2. 2 0
      scripts/dpkg-mergechangelogs.pl

+ 2 - 0
debian/changelog

@@ -3,6 +3,8 @@ dpkg (1.15.7.1) UNRELEASED; urgency=low
   * Fix dpkg-source -b (without -i) for source packages 1.0. Closes: #578693
     It was erroneously ignoring all changes because the ignore regex was
     wrong (due to the change to ignore debian/source/local-options).
+  * Add missing call to textdomain() in dpkg-mergechangelogs to make
+    translations work.
 
  -- Raphaël Hertzog <hertzog@debian.org>  Thu, 22 Apr 2010 07:50:04 +0200
 

+ 2 - 0
scripts/dpkg-mergechangelogs.pl

@@ -27,6 +27,8 @@ use Dpkg::Version;
 use Getopt::Long;
 use Scalar::Util qw(blessed);
 
+textdomain("dpkg-dev");
+
 sub merge_entries($$$);
 sub merge_block($$$;&);
 sub merge_entry_item($$$$);