Fixes ice states strings in call info.

cusax-fix
Damian Minkov 13 years ago
parent 5c9b257e92
commit 4247259805

@ -570,10 +570,10 @@ service.gui.callinfo.MEDIA_STREAM_SRTP=SRTP
service.gui.callinfo.KEY_EXCHANGE_PROTOCOL=Key exchange protocol
service.gui.callinfo.ICE_CANDIDATE_EXTENDED_TYPE=ICE candidate extended type
service.gui.callinfo.ICE_STATE=ICE Processing State:
service.gui.callinfo.ICE_STATE.Waiting=Gather candidates
service.gui.callinfo.ICE_STATE.Running=Connectivity checks
service.gui.callinfo.ICE_STATE.Completed=Completed
service.gui.callinfo.ICE_STATE.Failed=Failed
service.gui.callinfo.ICE_STATE.WAITING=Gather candidates
service.gui.callinfo.ICE_STATE.RUNNING=Connectivity checks
service.gui.callinfo.ICE_STATE.COMPLETED=Completed
service.gui.callinfo.ICE_STATE.FAILED=Failed
service.gui.callinfo.ICE_LOCAL_HOST_ADDRESS=Local host IP / Port:
service.gui.callinfo.ICE_LOCAL_REFLEXIVE_ADDRESS=Local reflexive IP / Port:
service.gui.callinfo.ICE_LOCAL_RELAYED_ADDRESS=Local relayed IP / Port:

@ -327,7 +327,8 @@ private void constructPeerInfo(CallPeer callPeer, StringBuffer stringBuffer)
resources.getI18NString(
"service.gui.callinfo.ICE_STATE"),
resources.getI18NString(
"service.gui.callinfo.ICE_STATE." + iceState)));
"service.gui.callinfo.ICE_STATE."
+ iceState.toUpperCase())));
}
stringBuffer.append("<br/>");

Loading…
Cancel
Save