Переглянути джерело

Removes i18n strings for p2p and turn.

j8
damencho 5 роки тому
джерело
коміт
84c60a5fdf

+ 1
- 3
lang/main.json Переглянути файл

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

+ 2
- 2
react/features/connection-stats/components/ConnectionStatsTable.js Переглянути файл

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

Завантаження…
Відмінити
Зберегти