(trunk) #3045 "size units" -- sync the default units in all the apps s.t. they're consistent with each other

This commit is contained in:
Charles Kerr
2010-07-28 00:31:11 +00:00
parent 914af1c9f8
commit e6bafdf26b
6 changed files with 64 additions and 63 deletions

View File

@@ -59,11 +59,11 @@ const char * disk_M_str = N_("MiB");
const char * disk_G_str = N_("GiB");
const char * disk_T_str = N_("TiB");
const int speed_K = 1000;
const char * speed_K_str = N_("kB/s");
const char * speed_M_str = N_("MB/s");
const char * speed_G_str = N_("GB/s");
const char * speed_T_str = N_("TB/s");
const int speed_K = 1024;
const char * speed_K_str = N_("KiB/s");
const char * speed_M_str = N_("MiB/s");
const char * speed_G_str = N_("GiB/s");
const char * speed_T_str = N_("TiB/s");
/***
****