IDEMPIERE-1472 Selection and Display panels are not translated in the posting window

This commit is contained in:
Carlos Ruiz 2013-10-30 13:26:41 -05:00
parent 528dead846
commit df7d83520b
1 changed files with 2 additions and 2 deletions

View File

@ -441,12 +441,12 @@ public class WAcctViewer extends Window implements EventListener<Event>
//"images/InfoAccount16.png"
Groupbox groupDisplay = new Groupbox();
Caption capDisplay = new Caption("Display");
Caption capDisplay = new Caption(Msg.getMsg(Env.getCtx(), "Display"));
groupDisplay.appendChild(capDisplay);
groupDisplay.appendChild(displayPanel);
Groupbox groupSelection = new Groupbox();
Caption capSelection = new Caption("Selection");
Caption capSelection = new Caption(Msg.getMsg(Env.getCtx(), "Selection"));
groupSelection.appendChild(capSelection);
groupSelection.appendChild(selectionPanel);