~ubuntu-core-dev/update-manager/main

« back to all changes in this revision

Viewing changes to UpdateManager/Core/utils.py

  • Committer: Robert Roth
  • Date: 2011-07-25 09:43:02 UTC
  • mto: This revision was merged to the branch mainline in revision 2184.
  • Revision ID: robert.roth.off@gmail.com-20110725094302-bc0t1bjxmt2z2qeh
Updated translator comment to follow the Ubuntu Units policy

Show diffs side-by-side

added added

removed removed

Lines of Context:
406
406
        # TRANSLATORS: download size of very small updates
407
407
        return _("1 kB")
408
408
    elif bytes < 1000 * 1000:
409
 
        # TRANSLATORS: download size of small updates, e.g. "250 KB"
 
409
        # TRANSLATORS: download size of small updates, e.g. "250 kB"
410
410
        return locale.format_string(_("%.0f kB"), bytes/1000)
411
411
    else:
412
412
        # TRANSLATORS: download size of updates, e.g. "2.3 MB"