summaryrefslogtreecommitdiff
path: root/plugins/gtkui/support.c
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-05-15 23:39:29 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-05-15 23:39:29 +0200
commit51530925ec9efce86e105c0327cbe67a317aa950 (patch)
treee44e0c48fb47efbebacfcce353c0e1ba3b27ea6d /plugins/gtkui/support.c
parent919e8f9e45c77217d1893281ca8606b21c1389f5 (diff)
added basic gettext support and russian translation
Diffstat (limited to 'plugins/gtkui/support.c')
-rw-r--r--plugins/gtkui/support.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/gtkui/support.c b/plugins/gtkui/support.c
index 7dc3c78c..00aff298 100644
--- a/plugins/gtkui/support.c
+++ b/plugins/gtkui/support.c
@@ -87,7 +87,7 @@ create_pixmap (GtkWidget *widget,
if (!pathname)
{
- g_warning ("Couldn't find pixmap file: %s", filename);
+ g_warning (_("Couldn't find pixmap file: %s"), filename);
return gtk_image_new ();
}
@@ -111,7 +111,7 @@ create_pixbuf (const gchar *filename)
if (!pathname)
{
- g_warning ("Couldn't find pixmap file: %s", filename);
+ g_warning (_("Couldn't find pixmap file: %s"), filename);
return NULL;
}