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
+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),
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),