diff options
author | Philip Withnall <pwithnall@src.gnome.org> | 2009-01-20 07:30:25 +0800 |
---|---|---|
committer | Philip Withnall <pwithnall@src.gnome.org> | 2009-01-20 07:30:25 +0800 |
commit | 8ecf59b151f949cb9e2bf8edb849c3a6df13d7b5 (patch) | |
tree | 04f8ac80b04ba51027c1f05a0a4ff18e519fd50a /embed/downloader-view.c | |
parent | d38f3c62a57f01785034e0b3861b937b3c815817 (diff) | |
download | gsoc2013-epiphany-8ecf59b151f949cb9e2bf8edb849c3a6df13d7b5.tar gsoc2013-epiphany-8ecf59b151f949cb9e2bf8edb849c3a6df13d7b5.tar.gz gsoc2013-epiphany-8ecf59b151f949cb9e2bf8edb849c3a6df13d7b5.tar.bz2 gsoc2013-epiphany-8ecf59b151f949cb9e2bf8edb849c3a6df13d7b5.tar.lz gsoc2013-epiphany-8ecf59b151f949cb9e2bf8edb849c3a6df13d7b5.tar.xz gsoc2013-epiphany-8ecf59b151f949cb9e2bf8edb849c3a6df13d7b5.tar.zst gsoc2013-epiphany-8ecf59b151f949cb9e2bf8edb849c3a6df13d7b5.zip |
Use C_() instead of Q_() with context for translatable strings.
Note this bumps the GLib dependency to 2.18.0.
(Helps: #558407)
svn path=/trunk/; revision=8705
Diffstat (limited to 'embed/downloader-view.c')
-rw-r--r-- | embed/downloader-view.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/embed/downloader-view.c b/embed/downloader-view.c index f3efdee97..17dd5d11c 100644 --- a/embed/downloader-view.c +++ b/embed/downloader-view.c @@ -673,22 +673,16 @@ progress_cell_data_func (GtkTreeViewColumn *col, switch (state) { case EPHY_DOWNLOAD_INITIALISING: - /* Translators: The text before the "|" is context to help you decide on - * the correct translation. You MUST OMIT it in the translated string. */ - text = Q_("download status|Unknown"); + text = C_("download status", "Unknown"); break; case EPHY_DOWNLOAD_FAILED: - /* Translators: The text before the "|" is context to help you decide on - * the correct translation. You MUST OMIT it in the translated string. */ - text = Q_("download status|Failed"); + text = C_("download status", "Failed"); break; case EPHY_DOWNLOAD_DOWNLOADING: case EPHY_DOWNLOAD_PAUSED: if (percent == -1) { - /* Translators: The text before the "|" is context to help you decide on - * the correct translation. You MUST OMIT it in the translated string. */ - text = Q_("download status|Unknown"); + text = C_("download status", "Unknown"); percent = 0; } break; |