I just did my first dialog box in GWT - with uibinder. Strangely the code I use for internationalizing didn't work (completely). It looks like the dialog box is trying to be rendered in iso-8859-1 because some French chars are not recognized.
Here is the code that appears at the top of a uibinder view (generated in eclipse by the gwt plugin). I also put it at the top of the dialog boxes uibinder.
<?xml version="1.0" encoding="UTF-8"?>
<ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder'
xmlns:g='urn:import:com.google.gwt.user.client.ui'
xmlns:p1="urn:import:com.google.gwt.user.datepicker.client"
ui:generateFormat='com.google.gwt.i18n.rebind.format.PropertiesFormat'
ui:generateKeys="com.google.gwt.i18n.rebind.keygen.MD5KeyGenerator"
ui:generateLocales="default" xmlns:p2="urn:import:com.google.gwt.user.cellview.client">
This works in all my view's but not in the dialog box.
Any ideas?