i18n-hint kbps abbreviates "thousands of bits per second"
| 89 | |
| 90 | // i18n-hint kbps abbreviates "thousands of bits per second" |
| 91 | TranslatableString n_kbps(int n) { return XO("%d kbps").Format( n ); } |
| 92 | TranslatableString f_kbps( double d ) { return XO("%.2f kbps").Format( d ); } |
| 93 | |
| 94 | enum : int |