X-Git-Url: https://git.donarmstrong.com/?p=xournal.git;a=blobdiff_plain;f=src%2Fxo-support.c;h=5d2689ff3dd8eb4373d8b728f61d42766f12e80e;hp=aaa8f1f0fc617593eedbc16d149154e3e8fd1a24;hb=e648cece76b671b5b0e165acc6d14178e8de1000;hpb=8d8f9e44b17ef9737084eea7693072e4777a0609 diff --git a/src/xo-support.c b/src/xo-support.c index aaa8f1f..5d2689f 100644 --- a/src/xo-support.c +++ b/src/xo-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,14 +111,14 @@ 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; } pixbuf = gdk_pixbuf_new_from_file (pathname, &error); if (!pixbuf) { - fprintf (stderr, "Failed to load pixbuf file: %s: %s\n", + fprintf (stderr, _("Failed to load pixbuf file: %s: %s\n"), pathname, error->message); g_error_free (error); }