From 93538f75e38f05bde8129a63245fe191ae4d295e Mon Sep 17 00:00:00 2001 From: Carlos Garcia Campos Date: Fri, 16 Jan 2009 08:37:45 +0000 Subject: Use brakets around the percentage in progress messages. See bug #567910. 2009-01-16 Carlos Garcia Campos * shell/ev-window.c: (reload_remote_copy_progress_cb), (window_save_file_copy_progress_cb): Use brakets around the percentage in progress messages. See bug #567910. svn path=/trunk/; revision=3336 --- diff --git a/ChangeLog b/ChangeLog index f7da9d5..050576f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,13 @@ 2009-01-16 Carlos Garcia Campos + * shell/ev-window.c: (reload_remote_copy_progress_cb), + (window_save_file_copy_progress_cb): + + Use brakets around the percentage in progress messages. See bug + #567910. + +2009-01-16 Carlos Garcia Campos + * shell/ev-window.c: (reload_remote_copy_ready_cb): Fix typo in error message. See bug #567910. diff --git a/shell/ev-window.c b/shell/ev-window.c index 43450d3..1ec9fe9 100644 --- a/shell/ev-window.c +++ b/shell/ev-window.c @@ -1906,7 +1906,7 @@ reload_remote_copy_progress_cb (goffset n_bytes, 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), @@ -2433,15 +2433,15 @@ window_save_file_copy_progress_cb (goffset n_bytes, switch (save_type) { case EV_SAVE_DOCUMENT: - status = g_strdup_printf (_("Uploading document %d%%"), + status = g_strdup_printf (_("Uploading document (%d%%)"), (gint)(fraction * 100)); break; case EV_SAVE_ATTACHMENT: - status = g_strdup_printf (_("Uploading attachment %d%%"), + status = g_strdup_printf (_("Uploading attachment (%d%%)"), (gint)(fraction * 100)); break; case EV_SAVE_IMAGE: - status = g_strdup_printf (_("Uploading image %d%%"), + status = g_strdup_printf (_("Uploading image (%d%%)"), (gint)(fraction * 100)); break; default: -- cgit v0.9.1