diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-12-20 21:06:44 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-12-20 21:06:44 +0800 |
commit | 41faee026cf286802847ed449860fdad91b17d13 (patch) | |
tree | 71d4d496b79bf04396ac1e6252d83045bf630d85 | |
parent | 44d1914de33c38fb0f60e7088dc91491a1010d71 (diff) | |
download | gsoc2013-epiphany-41faee026cf286802847ed449860fdad91b17d13.tar gsoc2013-epiphany-41faee026cf286802847ed449860fdad91b17d13.tar.gz gsoc2013-epiphany-41faee026cf286802847ed449860fdad91b17d13.tar.bz2 gsoc2013-epiphany-41faee026cf286802847ed449860fdad91b17d13.tar.lz gsoc2013-epiphany-41faee026cf286802847ed449860fdad91b17d13.tar.xz gsoc2013-epiphany-41faee026cf286802847ed449860fdad91b17d13.tar.zst gsoc2013-epiphany-41faee026cf286802847ed449860fdad91b17d13.zip |
Fix untranslated string. Fixes bug #161739.
2004-12-20 Christian Persch <chpe@cvs.gnome.org>
* embed/downloader-view.c: (update_download_row):
Fix untranslated string. Fixes bug #161739.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | embed/downloader-view.c | 3 |
2 files changed, 8 insertions, 1 deletions
@@ -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); } |