brasero r1204 - in trunk: . src
- From: philippr svn gnome org
- To: svn-commits-list gnome org
- Subject: brasero r1204 - in trunk: . src
- Date: Thu, 28 Aug 2008 16:38:44 +0000 (UTC)
Author: philippr
Date: Thu Aug 28 16:38:44 2008
New Revision: 1204
URL: http://svn.gnome.org/viewvc/brasero?rev=1204&view=rev
Log:
Fix for #549726 â The symbol of the term kibibyte is \'KiB\' not \'kiB\'
* src/brasero-progress.c
(brasero_burn_progress_display_session_info):
Modified:
trunk/ChangeLog
trunk/src/brasero-progress.c
Modified: trunk/src/brasero-progress.c
==============================================================================
--- trunk/src/brasero-progress.c (original)
+++ trunk/src/brasero-progress.c Thu Aug 28 16:38:44 2008
@@ -280,7 +280,7 @@
if (written > 1024 * 1024)
text = g_strdup_printf (_("%i MiB"), written / 1024 / 1024);
else if (written > 1024)
- text = g_strdup_printf (_("%i kiB"), written / 1024);
+ text = g_strdup_printf (_("%i KiB"), written / 1024);
else if (written > 0)
text = g_strdup_printf (_("%i bytes"), written);
else
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]