found that...
var str1 = this.tr("Here we come");
var str2 = this.tr("with a cake to the core team");
var label = new qx.ui.basic.Label(str1 + str2);
does not translate....
instead...
var str1 = "Here we come";
var str2 = "with a cake to the core team";
var label = new qx.ui.basic.Label(this.tr(str1 + str2));
which works.
We couldn't find it to be documented.
Stefan
------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel