GNOME Bugzilla – Bug 360458
Avoid markup in translatable messages
Last modified: 2006-10-09 13:07:32 UTC
As translators often say, please don't include markup in translateable messages. Move the markup outside of the gettext call. See http://developer.gnome.org/doc/tutorials/gnome-i18n/developer.html#avoid-markup Affected messages (other than those from glade, since bug 97061 has to be fixed first to handle those): ./gimp/app/dialogs/tips-dialog.c: tip = gimp_tip_new (_("<b>Your GIMP tips file appears to be missing!</b>"), ./gimp/app/dialogs/tips-dialog.c: tip = gimp_tip_new (_("<b>The GIMP tips file could not be parsed!</b>"), I'll attach a patch in a minute to fix this.
Created attachment 74234 [details] [review] Remove markup
Thanks for the patch but I have rather changed the internal API to avoid these pointless string duplications. 2006-10-09 Sven Neumann <sven@gimp.org> * app/dialogs/tips-parser.[ch]: accept printf-style format strings. * app/dialogs/tips-dialog.c: avoid markup in translatable messages (bug #360458).