Removes i18n strings for p2p and turn.

This commit is contained in:
damencho 2019-08-22 11:36:04 +01:00 committed by Дамян Минков
parent cfc7210ac8
commit 84c60a5fdf
2 changed files with 3 additions and 5 deletions

View File

@ -89,7 +89,6 @@
"localport_plural": "Local ports:",
"more": "Show more",
"packetloss": "Packet loss:",
"peer_to_peer": " (p2p)",
"quality": {
"good": "Good",
"inactive": "Inactive",
@ -104,8 +103,7 @@
"resolution": "Resolution:",
"status": "Connection:",
"transport": "Transport:",
"transport_plural": "Transports:",
"turn": " (turn)"
"transport_plural": "Transports:"
},
"dateUtils": {
"earlier": "Earlier",

View File

@ -519,10 +519,10 @@ class ConnectionStatsTable extends Component<Props> {
if (isP2P) {
additionalData.push(
<span>{ t('connectionindicator.peer_to_peer') }</span>);
<span> (p2p)</span>);
}
if (isTURN) {
additionalData.push(<span>{ t('connectionindicator.turn') }</span>);
additionalData.push(<span> (turn)</span>);
}
// First show remote statistics, then local, and then transport type.