소스 검색

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.
Guillem Jover 11 년 전
부모
커밋
9df9fbbfe2
2개의 변경된 파일7개의 추가작업 그리고 6개의 파일을 삭제
  1. 1 0
      debian/changelog
  2. 6 6
      dselect/pkgdisplay.cc

+ 1 - 0
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.

+ 6 - 6
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