IDEMPIERE-1643 Adding a status bar for FindWindow

This commit is contained in:
Carlos Ruiz 2018-08-27 16:17:41 +02:00
parent 347454c736
commit f533258813
1 changed files with 1 additions and 1 deletions

View File

@ -2630,7 +2630,7 @@ public class FindWindow extends Window implements EventListener<Event>, ValueCha
*/
private void setStatusDB (int currentCount)
{
StringBuilder text = new StringBuilder(" ").append(currentCount).append(" / ").append(m_total).append(" ");
StringBuilder text = new StringBuilder(" ").append(Msg.getMsg(Env.getCtx(), "Records")).append(" = ").append(m_total).append(" ");
statusBar.setStatusDB(text.toString());
} // setDtatusDB
/** END DEVCOFFEE **/