Bug 553385 – gtk-builder-convert creates untranslated combobox models

2008-09-24  Johan Dahlin  <johan@gnome.org>

    Bug 553385 – gtk-builder-convert creates untranslated combobox models

    * gtk/gtk-builder-convert: Set the translatable property on
    col tags for converted combos.


svn path=/trunk/; revision=21512
This commit is contained in:
Johan Dahlin 2008-09-24 09:59:05 +00:00 committed by Johan Dahlin
parent 57473511e5
commit 5fcfc7a368
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2008-09-24 Johan Dahlin <johan@gnome.org>
Bug 553385 gtk-builder-convert creates untranslated combobox models
* gtk/gtk-builder-convert: Set the translatable property on
col tags for converted combos.
2008-09-24 Tor Lillqvist <tml@novell.com>
* gtk-zip.sh.in: Include all of share/man, lib/pkgconfig,

View File

@ -559,6 +559,7 @@ class GtkBuilderConverter(object):
col = self._dom.createElement('col')
col.setAttribute('id', '0')
col.setAttribute('translatable', 'yes')
col.appendChild(self._dom.createTextNode(item))
row.appendChild(col)