[Xfce4-commits] <midori:master> Localise ?B and correct a typo in the function call

Christian Dywan noreply at xfce.org
Mon Mar 7 00:12:01 CET 2011


Updating branch refs/heads/master
         to 67b706b550d7e8f8bbe8f3f4c8d66d8eec3f6a37 (commit)
       from 21faa34589fc407f252de87d528d2dea9dde0c3d (commit)

commit 67b706b550d7e8f8bbe8f3f4c8d66d8eec3f6a37
Author: Christian Dywan <christian at twotoasts.de>
Date:   Mon Mar 7 00:10:05 2011 +0100

    Localise ?B and correct a typo in the function call

 toolbars/midori-transferbar.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/toolbars/midori-transferbar.c b/toolbars/midori-transferbar.c
index 16a5fc6..7a67e25 100644
--- a/toolbars/midori-transferbar.c
+++ b/toolbars/midori-transferbar.c
@@ -97,7 +97,8 @@ midori_transferbar_download_notify_progress_cb (WebKitDownload* download,
     if (time != *last_time)
         transfer = g_format_size_for_display ((size - *last_size) / (time - *last_time));
     else
-        transfer = g_strup ("?B");
+        /* i18n: Unknown number of bytes, used for transfer rate like ?B/s */
+        transfer = g_strdup (_("?B"));
     /* i18n: Download tooltip, 4KB of 43MB, 130KB/s */
     size_text = g_strdup_printf (_("%s of %s, %s/s"), current, total, transfer);
     if (time - *last_time > 5.0)



More information about the Xfce4-commits mailing list