aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--embed/downloader-view.c3
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 77821cda3..716284a73 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2004-12-20 Christian Persch <chpe@cvs.gnome.org>
+ * embed/downloader-view.c: (update_download_row):
+
+ Fix untranslated string. Fixes bug #161739.
+
+2004-12-20 Christian Persch <chpe@cvs.gnome.org>
+
* configure.ac:
Really make the configure check for -Wdeclaration-after-statement work.
diff --git a/embed/downloader-view.c b/embed/downloader-view.c
index f8e1f2400..51e0fc4ba 100644
--- a/embed/downloader-view.c
+++ b/embed/downloader-view.c
@@ -356,7 +356,8 @@ update_download_row (DownloaderView *dv, EphyDownload *download)
char *total_progress;
total_progress = gnome_vfs_format_file_size_for_display (total);
- file = g_strdup_printf ("%s\n%s of %s", name,
+ /* translators: first %s is filename, "%s of %s" is current/total file size */
+ file = g_strdup_printf (_("%s\n%s of %s"), name,
cur_progress, total_progress);
g_free (total_progress);
}