Previous | Next

A grep pipeline

Add grep -v po to filter out all those po lines:
$ grep -r "preview in image" . | grep -v po

./plug-ins/jpeg/jpeg-save.c:    gtk_check_button_new_with_mnemonic (_("Show _preview in image window"));

$ 
That's more like it! Just one line, and it's a C file.

So the next step is to edit jpeg-save.c and find that line.