Skip to content

Commit

Permalink
use lowercase prefix for kilo- after all
Browse files Browse the repository at this point in the history
  • Loading branch information
monsta committed Jun 8, 2015
1 parent 413db8f commit 908f931
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/netspeed.c
Expand Up @@ -440,10 +440,10 @@ bytes_to_string(double bytes, gboolean per_sec, gboolean bits, gboolean shortene
if (shortened) {
unit = bits ? /* translators: kilobits (short) */ N_("k") : /* translators: Kilobytes (short) */ N_("K");
} else {
unit = bits ? N_("Kb/s") : N_("KiB/s");
unit = bits ? N_("kb/s") : N_("KiB/s");
}
else
unit = bits ? N_("Kb") : N_("KiB");
unit = bits ? N_("kb") : N_("KiB");

} else {

Expand Down

0 comments on commit 908f931

Please sign in to comment.