-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Исправлены неверные падежи для информации о количестве подключенных станций
- Loading branch information
Showing
5 changed files
with
35 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Исправление для модуля EchoLink | ||
# by R2ADU | ||
# | ||
# | ||
|
||
############################################################################### | ||
# | ||
# EchoLink module event handlers | ||
# | ||
############################################################################### | ||
|
||
|
||
# | ||
# This is the namespace in which all functions and variables below will exist. | ||
# The name must match the configuration variable "NAME" in the | ||
# [ModuleEchoLink] section in the configuration file. The name may be changed | ||
# but it must be changed in both places. | ||
# | ||
namespace eval EchoLink { | ||
|
||
|
||
proc status_report {} { | ||
variable num_connected_stations; | ||
variable module_name; | ||
global active_module; | ||
|
||
if {$active_module == $module_name} { | ||
speakNumber "EchoLink" $num_connected_stations "connected_station" | ||
playSilence 200 | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters