diff --git a/lang/main.json b/lang/main.json index 29ed660a5..e46e9e079 100644 --- a/lang/main.json +++ b/lang/main.json @@ -196,7 +196,7 @@ "transport_plural": "Transports:", "bandwidth": "Estimated bandwidth:", "na": "Come back here for connection information once the conference starts", - "direct": " (direct)" + "peer_to_peer": " (p2p)" }, "notify": { "disconnected": "disconnected", diff --git a/modules/UI/videolayout/ConnectionIndicator.js b/modules/UI/videolayout/ConnectionIndicator.js index df67be380..9b8fecd64 100644 --- a/modules/UI/videolayout/ConnectionIndicator.js +++ b/modules/UI/videolayout/ConnectionIndicator.js @@ -215,8 +215,14 @@ ConnectionIndicator.prototype.generateText = function () { remote_address_key + "' data-i18n-options='" + JSON.stringify({count: data.remoteIP.length}) + "'> " + - ConnectionIndicator.getStringFromArray(data.remoteIP) + - ""; + ConnectionIndicator.getStringFromArray(data.remoteIP); + + // Append (p2p) to indicate the P2P type of transport + if (isP2P) { + transport + += ""; + } + transport += ""; var key_remote = "connectionindicator.remoteport", key_local = "connectionindicator.localport"; @@ -247,12 +253,7 @@ ConnectionIndicator.prototype.generateText = function () { + "'>" + "" + ConnectionIndicator.getStringFromArray(data.transportType); - // Append (direct) to indicate the P2P type of transport - if (isP2P) { - transport += ""; - } - // Close "type" column and end table row - transport += ""; + + ""; }