As I was working on i18n, I noticed the following string bug in app/tools/gimpforegroundselecttool.c: status = _("Rougly outline the object to extract"); So, here's a tiny patch that fixes it (attached). David.
Index: app/tools/gimpforegroundselecttool.c =================================================================== --- app/tools/gimpforegroundselecttool.c (revision 27899) +++ app/tools/gimpforegroundselecttool.c (working copy) @@ -325,7 +325,7 @@ switch (GIMP_SELECTION_TOOL (tool)->function) { case SELECTION_SELECT: - status = _("Rougly outline the object to extract"); + status = _("Roughly outline the object to extract"); break; default: break;
_______________________________________________ Gimp-developer mailing list Gimp-developer@xxxxxxxxxxxxxxxxxxxxxx https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer