From: Michael Vogt Date: Thu, 16 Jan 2014 17:26:07 +0000 (+0100) Subject: apt-private/private-show.cc: do not show Description-lang: header, the user probably... X-Git-Tag: 0.9.14.3.exp3~4^2~4 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/2a79257e96010318c4bc6d2f2e3e9c475e5bf445 apt-private/private-show.cc: do not show Description-lang: header, the user probably knows his language (thanks to Donkult) --- diff --git a/apt-private/private-show.cc b/apt-private/private-show.cc index ddc75dbeb..0aa42ecce 100644 --- a/apt-private/private-show.cc +++ b/apt-private/private-show.cc @@ -74,13 +74,12 @@ bool DisplayRecord(pkgCacheFile &CacheFile, pkgCache::VerIterator V, // write the description pkgRecords Recs(*Cache); + // FIXME: show (optionally) all available translations(?) pkgCache::DescIterator Desc = V.TranslatedDescription(); if (Desc.end() == false) { pkgRecords::Parser &P = Recs.Lookup(Desc.FileList()); - if (strcmp(Desc.LanguageCode(),"") != 0) - out << "Description-lang: " << Desc.LanguageCode() << std::endl; - out << "Description" << P.LongDesc(); + out << "Description: " << P.LongDesc(); } // write a final newline (after the description)