eliminate redundant 'per'

If you're measuring the rate of X, you can say Xps or X/s, but saying X/ps is redundant and wrong.
pull/88/head
Daniel M. Drucker 2012-09-14 14:37:05 -03:00
parent f52bdf6577
commit 11c5eb7172
1 changed files with 4 additions and 4 deletions

View File

@ -1412,9 +1412,9 @@ class glancesScreen:
_("Network"), 8, self.title_color if
self.hascolors else curses.A_UNDERLINE)
self.term_window.addnstr(self.network_y, self.network_x + 10,
_("Rx/ps"), 8)
_("Rx/s"), 8)
self.term_window.addnstr(self.network_y, self.network_x + 19,
_("Tx/ps"), 8)
_("Tx/s"), 8)
# If there is no data to display...
if not network:
@ -1458,9 +1458,9 @@ class glancesScreen:
self.title_color if self.hascolors else
curses.A_UNDERLINE)
self.term_window.addnstr(self.diskio_y, self.diskio_x + 10,
_("In/ps"), 8)
_("In/s"), 8)
self.term_window.addnstr(self.diskio_y, self.diskio_x + 19,
_("Out/ps"), 8)
_("Out/s"), 8)
# If there is no data to display...
if not diskio: