aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-request-about.c
diff options
context:
space:
mode:
authorClaudio Saavedra <csaavedra@igalia.com>2011-09-16 05:03:05 +0800
committerClaudio Saavedra <csaavedra@igalia.com>2011-09-16 05:05:49 +0800
commit6acf22c4e1e00ece79604561b2f6a1e29f85d994 (patch)
treeef41c5b8f438bd56700db61ff14362720883f1d3 /embed/ephy-request-about.c
parent03669159f843e007f98b51334bb66833d82d0f8f (diff)
downloadgsoc2013-epiphany-6acf22c4e1e00ece79604561b2f6a1e29f85d994.tar
gsoc2013-epiphany-6acf22c4e1e00ece79604561b2f6a1e29f85d994.tar.gz
gsoc2013-epiphany-6acf22c4e1e00ece79604561b2f6a1e29f85d994.tar.bz2
gsoc2013-epiphany-6acf22c4e1e00ece79604561b2f6a1e29f85d994.tar.lz
gsoc2013-epiphany-6acf22c4e1e00ece79604561b2f6a1e29f85d994.tar.xz
gsoc2013-epiphany-6acf22c4e1e00ece79604561b2f6a1e29f85d994.tar.zst
gsoc2013-epiphany-6acf22c4e1e00ece79604561b2f6a1e29f85d994.zip
Add translation context for a string
https://bugzilla.gnome.org/show_bug.cgi?id=658900
Diffstat (limited to 'embed/ephy-request-about.c')
-rw-r--r--embed/ephy-request-about.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/embed/ephy-request-about.c b/embed/ephy-request-about.c
index e55bfec4c..497800289 100644
--- a/embed/ephy-request-about.c
+++ b/embed/ephy-request-about.c
@@ -186,7 +186,9 @@ ephy_request_about_send (SoupRequest *request,
img_data_base64 = g_base64_encode ((guchar*)img_data, data_length);
g_string_append_printf (data_str, "<tbody><tr><td class=\"icon\"><img width=64 height=64 src=\"data:image/png;base64,%s\">" \
" </img></td><td class=\"data\"><div class=\"appname\">%s</div><div class=\"appurl\">%s</div></td><td class=\"input\"><input type=\"submit\" value=\"Delete\" id=\"%s\"></td><td class=\"date\">%s <br /> %s</td></tr>",
- img_data_base64, app->name, app->url, app->name, _("Installed on:"), app->install_date);
+ img_data_base64, app->name, app->url, app->name,
+ /* Note for translators: this refers to the installation date. */
+ _("Installed on:"), app->install_date);
g_free (img_data_base64);
g_free (img_data);
}