Skip to content

Commit

Permalink
Revert "Updated *.ts files (#488)" (#490)
Browse files Browse the repository at this point in the history
This reverts commit 17577bb.
  • Loading branch information
tsujan authored Oct 31, 2024
1 parent 17577bb commit bff64cb
Show file tree
Hide file tree
Showing 39 changed files with 7,832 additions and 8,858 deletions.
8 changes: 4 additions & 4 deletions src/pstable.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
qps/*
/*
* pstable.cpp
* This file is part of qps -- Qt-based visual process status monitor
*
Expand Down Expand Up @@ -182,15 +182,15 @@ QString Pstable::tipText(int col)
QString s(cat->help);
// trick
if (cat->index == F_STAT)
s.append(tr("\n(R =Running, S =Sleeping, T =sTopped, Z=Zombie)"));
s.append("\n(R =Running, S =Sleeping, T =sTopped, Z=Zombie)");
if (cat->index == F_PLCY)
s.append(tr("\n(TS =Time Sharing)"));
s.append("\n(TS =Time Sharing)");
// if(cat->index == F_RSS);
// s.append("\nRSS = CODE + DATA + SHARE\n"
// "RSS = TRS + DRS + SHARE\n");
/// s.append("\n(RSS = TRS + DRS)");
if (cat == procview->sortcat)
s.append(procview->reversed ? tr("\n(sorted backwards)") : tr("\n(sorted)"));
s.append(procview->reversed ? "\n(sorted backwards)" : "\n(sorted)");

// printf("size=%d\n",s.capacity());
return s;
Expand Down
Loading

0 comments on commit bff64cb

Please sign in to comment.