This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch master in repository dpkg.
commit 9df9fbbfe26328f2392ecfde1b4f0c427c728392 Author: Guillem Jover <[email protected]> Date: Wed Feb 18 20:02:02 2015 +0100 dselect: Improve available state sorting order strings Switch to use terms that are more common in package managers, and as such should be more familiar to new users. --- debian/changelog | 1 + dselect/pkgdisplay.cc | 12 ++++++------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/debian/changelog b/debian/changelog index 5306b42..e09a068 100644 --- a/debian/changelog +++ b/debian/changelog @@ -91,6 +91,7 @@ dpkg (1.18.0) UNRELEASED; urgency=low - Merge the same dpkg-scanpackages warning messages into a single line. - Clarify dpkg-genchanges changes description open error. - Add missing preposition in Dpkg::Source::Patch error message. + - Improve available state sorting order strings in dselect panel. [ Raphaƫl Hertzog ] * Drop myself from Uploaders. diff --git a/dselect/pkgdisplay.cc b/dselect/pkgdisplay.cc index e264a9e..6b9019b 100644 --- a/dselect/pkgdisplay.cc +++ b/dselect/pkgdisplay.cc @@ -93,17 +93,17 @@ const char wantchars[]= "n*=-_"; const char *const ssaabbrevs[]= { N_("Broken"), N_("New"), - N_("Updated"), + N_("Upgradable"), N_("Obsolete/local"), - N_("Up-to-date"), + N_("Installed"), N_("Available"), N_("Removed") }, *const ssastrings[]= { N_("Brokenly installed packages"), N_("Newly available packages"), - N_("Updated packages (newer version is available)"), - N_("Obsolete and local packages present on system"), - N_("Up to date installed packages"), - N_("Available packages (not currently installed)"), + N_("Upgradable packages"), + N_("Obsolete and locally created packages"), + N_("Installed packages"), + N_("Available not installed packages"), N_("Removed and no longer available packages") }; const char -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/dpkg/dpkg.git -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

