Przeglądaj źródła

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 lat temu
rodzic
commit
9df9fbbfe2
2 zmienionych plików z 7 dodań i 6 usunięć
  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.
     - Merge the same dpkg-scanpackages warning messages into a single line.
     - Clarify dpkg-genchanges changes description open error.
     - Clarify dpkg-genchanges changes description open error.
     - Add missing preposition in Dpkg::Source::Patch error message.
     - Add missing preposition in Dpkg::Source::Patch error message.
+    - Improve available state sorting order strings in dselect panel.
 
 
   [ Raphaël Hertzog ]
   [ Raphaël Hertzog ]
   * Drop myself from Uploaders.
   * Drop myself from Uploaders.

+ 6 - 6
dselect/pkgdisplay.cc

@@ -93,17 +93,17 @@ const char wantchars[]=     "n*=-_";
 const char
 const char
   *const ssaabbrevs[]= { N_("Broken"),
   *const ssaabbrevs[]= { N_("Broken"),
                          N_("New"),
                          N_("New"),
-                         N_("Updated"),
+                         N_("Upgradable"),
                          N_("Obsolete/local"),
                          N_("Obsolete/local"),
-                         N_("Up-to-date"),
+                         N_("Installed"),
                          N_("Available"),
                          N_("Available"),
                          N_("Removed") },
                          N_("Removed") },
   *const ssastrings[]= { N_("Brokenly installed packages"),
   *const ssastrings[]= { N_("Brokenly installed packages"),
                          N_("Newly available 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") };
                          N_("Removed and no longer available packages") };
 
 
 const char
 const char