diff options
author | Matthias Clasen <mclasen@redhat.com> | 2013-12-18 23:01:03 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2013-12-18 23:01:03 -0500 |
commit | 019c30d41ea27b7b1809634c01442885fe6a4e6e (patch) | |
tree | 8c6985bee4b4ee7f0f7118cf7c04a79046e0c8ae /gdk-pixbuf/io-gdip-jpeg.c | |
parent | 907a1af97da0091eeba995abd622be296ff9d33d (diff) | |
download | gdk-pixbuf-019c30d41ea27b7b1809634c01442885fe6a4e6e.tar.gz |
Consistenly annotate format names for translation
The right macro to use in the fill function is N_(),
but some loaders were using _(). Correct this.
Diffstat (limited to 'gdk-pixbuf/io-gdip-jpeg.c')
-rw-r--r-- | gdk-pixbuf/io-gdip-jpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk-pixbuf/io-gdip-jpeg.c b/gdk-pixbuf/io-gdip-jpeg.c index 95699eff6..ed4533021 100644 --- a/gdk-pixbuf/io-gdip-jpeg.c +++ b/gdk-pixbuf/io-gdip-jpeg.c @@ -133,7 +133,7 @@ MODULE_ENTRY (fill_info) (GdkPixbufFormat *info) info->name = "jpeg";
info->signature = (GdkPixbufModulePattern *) signature;
- info->description = _("The JPEG image format");
+ info->description = N_("The JPEG image format");
info->mime_types = (gchar **) mime_types;
info->extensions = (gchar **) extensions;
info->flags = GDK_PIXBUF_FORMAT_WRITABLE | GDK_PIXBUF_FORMAT_THREADSAFE;
|