GNOME Bugzilla – Bug 754035
Two strings that should not be marked for translation
Last modified: 2015-08-31 08:20:14 UTC
In src/gtk/gtkplacesview.c the strings "open-location" and "show-error-message" which are signal names are marked for translation. I don't think this will work if there actually is a translation, and I'm even surprised the compiler doesn't bug you for not having a const gchar *.
Maybe you meant to use I_() instead of _() ?
There are also properties in src/gtk/gtkplacesview.c and src/gtk/gtkplacesviewrow.c that shouldn't be translatable.
Created attachment 310330 [details] [review] gtkplacesview: don't translate signals and properties They are used internally anyway.
Is now ok? Since they are used only internally (since is copy pasted code from gtk+) I marked them as non translatable for nautilus. Attachment 310330 [details] pushed as 865e36e - gtkplacesview: don't translate signals and properties