]> www.fi.muni.cz Git - evince.git/commitdiff
Add missing brakets around the percentage in progress messages. See bug
authorCarlos Garcia Campos <carlosgc@gnome.org>
Fri, 16 Jan 2009 10:35:15 +0000 (10:35 +0000)
committerCarlos Garcia Campos <carlosgc@src.gnome.org>
Fri, 16 Jan 2009 10:35:15 +0000 (10:35 +0000)
2009-01-16  Carlos Garcia Campos  <carlosgc@gnome.org>

* shell/ev-window.c: (window_open_file_copy_progress_cb):

Add missing brakets around the percentage in progress
messages. See bug #567910.

svn path=/trunk/; revision=3341

ChangeLog
shell/ev-window.c

index 0858172ee5129f0845ff09fddfdd9740328356fb..aca9f43b55e6bd4b346f3f07b59c13227b717f16 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2009-01-16  Carlos Garcia Campos  <carlosgc@gnome.org>
+
+       * shell/ev-window.c: (window_open_file_copy_progress_cb):
+
+       Add missing brakets around the percentage in progress
+       messages. See bug #567910.
+       
 2009-01-16  Carlos Garcia Campos  <carlosgc@gnome.org>
 
        * shell/ev-application.c: (ev_application_open_window),
index 1ec9fe9d4f2474f33ab3c31c29341a52c2bd8663..9c63904774bf00070884299bd39fa8c82608f6c1 100644 (file)
@@ -1721,9 +1721,9 @@ window_open_file_copy_progress_cb (goffset   n_bytes,
        
        if (!ev_window->priv->message_area)
                return;
-       
+
        fraction = n_bytes / (gdouble)total_bytes;
-       status = g_strdup_printf (_("Downloading document %d%%"),
+       status = g_strdup_printf (_("Downloading document (%d%%)"),
                                  (gint)(fraction * 100));
        
        ev_progress_message_area_set_status (EV_PROGRESS_MESSAGE_AREA (ev_window->priv->message_area),