Skip to content

Commit 01878cc

Browse files
committed
app: improve palette loading error message
1 parent aab55c3 commit 01878cc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/core/gimppalette-load.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,8 @@ gimp_palette_load_gpl (GimpContext *context,
258258
gchar *msg;
259259

260260
if (my_error)
261-
msg = g_strdup_printf (_("Line %d: %s"), linenum, my_error->message);
261+
msg = g_strdup_printf (_("Error in line %d: %s"), linenum,
262+
my_error->message);
262263
else
263264
msg = g_strdup_printf (_("File is truncated in line %d"), linenum);
264265

0 commit comments

Comments
 (0)