IDEMPIERE-1472 Selection and Display panels are not translated in the posting window
This commit is contained in:
parent
528dead846
commit
df7d83520b
|
|
@ -441,12 +441,12 @@ public class WAcctViewer extends Window implements EventListener<Event>
|
||||||
//"images/InfoAccount16.png"
|
//"images/InfoAccount16.png"
|
||||||
|
|
||||||
Groupbox groupDisplay = new Groupbox();
|
Groupbox groupDisplay = new Groupbox();
|
||||||
Caption capDisplay = new Caption("Display");
|
Caption capDisplay = new Caption(Msg.getMsg(Env.getCtx(), "Display"));
|
||||||
groupDisplay.appendChild(capDisplay);
|
groupDisplay.appendChild(capDisplay);
|
||||||
groupDisplay.appendChild(displayPanel);
|
groupDisplay.appendChild(displayPanel);
|
||||||
|
|
||||||
Groupbox groupSelection = new Groupbox();
|
Groupbox groupSelection = new Groupbox();
|
||||||
Caption capSelection = new Caption("Selection");
|
Caption capSelection = new Caption(Msg.getMsg(Env.getCtx(), "Selection"));
|
||||||
groupSelection.appendChild(capSelection);
|
groupSelection.appendChild(capSelection);
|
||||||
groupSelection.appendChild(selectionPanel);
|
groupSelection.appendChild(selectionPanel);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue