Browse Source

Removes i18n strings for p2p and turn.

master
damencho 6 years ago
parent
commit
84c60a5fdf

+ 1
- 3
lang/main.json View File

89
         "localport_plural": "Local ports:",
89
         "localport_plural": "Local ports:",
90
         "more": "Show more",
90
         "more": "Show more",
91
         "packetloss": "Packet loss:",
91
         "packetloss": "Packet loss:",
92
-        "peer_to_peer": " (p2p)",
93
         "quality": {
92
         "quality": {
94
             "good": "Good",
93
             "good": "Good",
95
             "inactive": "Inactive",
94
             "inactive": "Inactive",
104
         "resolution": "Resolution:",
103
         "resolution": "Resolution:",
105
         "status": "Connection:",
104
         "status": "Connection:",
106
         "transport": "Transport:",
105
         "transport": "Transport:",
107
-        "transport_plural": "Transports:",
108
-        "turn": " (turn)"
106
+        "transport_plural": "Transports:"
109
     },
107
     },
110
     "dateUtils": {
108
     "dateUtils": {
111
         "earlier": "Earlier",
109
         "earlier": "Earlier",

+ 2
- 2
react/features/connection-stats/components/ConnectionStatsTable.js View File

519
 
519
 
520
         if (isP2P) {
520
         if (isP2P) {
521
             additionalData.push(
521
             additionalData.push(
522
-                <span>{ t('connectionindicator.peer_to_peer') }</span>);
522
+                <span> (p2p)</span>);
523
         }
523
         }
524
         if (isTURN) {
524
         if (isTURN) {
525
-            additionalData.push(<span>{ t('connectionindicator.turn') }</span>);
525
+            additionalData.push(<span> (turn)</span>);
526
         }
526
         }
527
 
527
 
528
         // First show remote statistics, then local, and then transport type.
528
         // First show remote statistics, then local, and then transport type.

Loading…
Cancel
Save