GNOME Bugzilla – Bug 590654
Title of GtkTreeViewColum is not translatable.
Last modified: 2010-06-24 15:05:12 UTC
Please describe the problem: The "title" property of GtkTreeViewColum object is not translatable in glade 3.6.3. Steps to reproduce: 1. Create a tree view in glade 3.6.3. 2. Right click on the item and select "Edit" from popup menu. 3. In the editor of tree view, create a GtkTreeviewColumn object as its child. 4. Set the title of the GtkTreeViewColumn. 5. Then you'll notice that its title is not translatable, which is a bug. Actual results: Expected results: The title of columns should be translatable. Does this happen every time? yes Other information:
I can confirm this. Currently my code looks like this to fix it (yuck!): for column in columns: column.set_title(_(column.get_title()))
I just compiled 3.7.1 and treeviewcolumns are translatable! Sorry for double post, I should have done this before asking.
Ah sorry I missed closing this bug when fixing it (thanks for reminding me).