GNOME Bugzilla – Bug 687516
typo in string: KB should be kB
Last modified: 2012-11-05 13:29:06 UTC
#: ../glib/gutils.c:2324 #, c-format msgid "%.1f KB" there should be "kB"
[Please actually MENTION the string in the bug summary.]
I mentioned it ;)
Created attachment 228040 [details] [review] Replaced the typo KB should be kB
Its not a typo: http://en.wikipedia.org/wiki/Kilobyte
why not? I do not see any contradicting reference in wiki
(In reply to comment #4) > Its not a typo: http://en.wikipedia.org/wiki/Kilobyte it is a typo: the correct prefix for 'kilobyte' is 'k', not 'K' - as the wiki page you linked says. :-)
the problem is that the function is question is broken by definition - hence why it's been deprecated and replaced by g_format_size(). at this point, it's pointless to fix the issue: the string is broken because the function itself is broken. I think WONTFIX is probably a better idea than NOTABUG. a warning in the function would also help avoiding new bugs being filed.
Created attachment 228108 [details] [review] Add a translator comment about 'KB' The GLib units policy used to be that 'KB' means 1024 bytes, 'MB' means 1024 KB, 'GB' means 1024 MB, etc. Those days are over, but we have a deprecated function that still works that way. It contains the string "KB", marked for translation, which has been a source of confusion for translators on multiple occasions.
Comment on attachment 228108 [details] [review] Add a translator comment about 'KB' Attachment 228108 [details] pushed as 81b27ff - Add a translator comment about 'KB'