Explorar el Código

Fix erroneous description of Breaks in dselect

The description should be 'breaks' as in 'A breaks B' rather than
'A breaks with B' since it is B that is broken by A and not vice versa.
Ian Jackson hace 18 años
padre
commit
3c461dc3e5
Se han modificado 3 ficheros con 8 adiciones y 1 borrados
  1. 5 0
      ChangeLog
  2. 2 0
      debian/changelog
  3. 1 1
      dselect/pkgdisplay.cc

+ 5 - 0
ChangeLog

@@ -1,3 +1,8 @@
+2008-03-09  Ian Jackson  <ian@davenant.greenend.org.uk>
+
+	* dselect/pkgdisplay.cc (relatestrings): Change 'breaks with' to
+	'breaks'.
+
 2008-03-09  Ian Jackson  <ian@davenant.greenend.org.uk>
 
 	* dselect/pkgdepcon.cc (packagelist::resolvedepcon): Move dep_breaks

+ 2 - 0
debian/changelog

@@ -23,6 +23,8 @@ dpkg (1.14.17) UNRELEASED; urgency=low
     Thanks to Ian Jackson.
   * Implement 'Breaks' properly in dselect. Closes: #448946
     Thanks to Ian Jackson.
+  * Fix erroneous description of Breaks in dselect output.
+    Thanks to Ian Jackson.
 
   [ Raphael Hertzog ]
   * Add a warning displayed by dpkg-genchanges if the current version is

+ 1 - 1
dselect/pkgdisplay.cc

@@ -72,7 +72,7 @@ const char
 			    N_("recommends"),
 			    N_("depends on"),
 			    N_("pre-depends on"),
-			    N_("breaks with"),
+			    N_("breaks"),
 			    N_("conflicts with"),
 			    N_("provides"),
 			    N_("replaces"),