After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 590654 - Title of GtkTreeViewColum is not translatable.
Title of GtkTreeViewColum is not translatable.
Status: RESOLVED FIXED
Product: glade
Classification: Applications
Component: general
3.6.x
Other All
: Normal normal
: ---
Assigned To: Glade 3 Maintainers
Glade 3 Maintainers
Depends on:
Blocks:
 
 
Reported: 2009-08-03 16:52 UTC by Hong Jen Yee
Modified: 2010-06-24 15:05 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Hong Jen Yee 2009-08-03 16:52:47 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:
Comment 1 Timo Vanwynsberghe 2010-06-24 14:18:34 UTC
I can confirm this.

Currently my code looks like this to fix it (yuck!):
for column in columns:
    column.set_title(_(column.get_title()))
Comment 2 Timo Vanwynsberghe 2010-06-24 14:42:48 UTC
I just compiled 3.7.1 and treeviewcolumns are translatable!

Sorry for double post, I should have done this before asking.
Comment 3 Tristan Van Berkom 2010-06-24 15:05:12 UTC
Ah sorry I missed closing this bug when fixing it (thanks for reminding me).