diff options
author | Xan Lopez <xan@gnome.org> | 2009-05-28 23:55:20 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2009-05-28 23:55:20 +0800 |
commit | 1a38edaef1a0f89e3964c82d321d9fd7db7dc6bf (patch) | |
tree | 16cad372bcbfd30e969e7193ee75a6bc2fce75d0 | |
parent | 5e83fc07ff785200e9dd5078ce903fb0b053e526 (diff) | |
download | gsoc2013-epiphany-1a38edaef1a0f89e3964c82d321d9fd7db7dc6bf.tar gsoc2013-epiphany-1a38edaef1a0f89e3964c82d321d9fd7db7dc6bf.tar.gz gsoc2013-epiphany-1a38edaef1a0f89e3964c82d321d9fd7db7dc6bf.tar.bz2 gsoc2013-epiphany-1a38edaef1a0f89e3964c82d321d9fd7db7dc6bf.tar.lz gsoc2013-epiphany-1a38edaef1a0f89e3964c82d321d9fd7db7dc6bf.tar.xz gsoc2013-epiphany-1a38edaef1a0f89e3964c82d321d9fd7db7dc6bf.tar.zst gsoc2013-epiphany-1a38edaef1a0f89e3964c82d321d9fd7db7dc6bf.zip |
webkit-embed: use C gettext macro for translation context.
Patch by Claude Paroz, bug #583893
-rw-r--r-- | embed/webkit/webkit-embed.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/embed/webkit/webkit-embed.c b/embed/webkit/webkit-embed.c index cb6e9dcb1..1323322be 100644 --- a/embed/webkit/webkit-embed.c +++ b/embed/webkit/webkit-embed.c @@ -600,9 +600,7 @@ confirm_action_from_mime (WebKitWebView *web_view, mime_description = NULL; mime_permission = EPHY_MIME_PERMISSION_SAFE; if (mime_description == NULL) { - /* Translators: The text before the "|" is context to help you decide on - * the correct translation. You MUST OMIT it in the translated string. */ - mime_description = g_strdup (Q_("File Type:|Unknown")); + mime_description = g_strdup (C_("file type", "Unknown")); action = DOWNLOAD_ACTION_OPEN_LOCATION; } |