diff --git a/SVXLink/README.md b/SVXLink/README.md index de497e6..e808612 100644 --- a/SVXLink/README.md +++ b/SVXLink/README.md @@ -73,7 +73,7 @@ And add this ***BEFORE***: ``` bridge.handleChatMessage(escaped.c_str()); ``` -This code will pass chat messages of conference server to bridge to find talker of transmission on conference call. +This code responds to pass a chat message emitted by conference server to the bridge, required to find a talker of transmission in case of conference call. Find this line (*void ModuleEchoLink::broadcastTalkerStatus(void)*): @@ -84,7 +84,7 @@ And add this ***BEFORE***: ``` const char* sysop_name = bridge.getTalker(); ``` -This code will pass call of transmisson to bridge on call of direct link. +This code responds to pass a talker of transmisson to the bridge in case of call on direct link. Find this text (*void ModuleEchoLink::broadcastTalkerStatus(void)*): @@ -95,7 +95,7 @@ And add this ***AFTER***: ``` bridge.setTalker(talker->remoteCallsign().c_str(), talker->remoteName().c_str()); ``` -This code will pass call of transmisson from bridge to echolink. +This code responds to pass a talker of transmisson from the bridge to echolink. ## How to configure: