* Make SRS say TACAN and FARP and not spell the single characters
This commit is contained in:
Applevangelist 2022-12-29 16:33:13 +01:00
parent 41eec658e0
commit 8661d07e1e

View File

@ -2416,6 +2416,8 @@ function ATIS:onafterReport( From, Event, To, Text )
local text = string.gsub( text, "mmHg", "millimeters of Mercury" )
local text = string.gsub( text, "hPa", "hectopascals" )
local text = string.gsub( text, "m/s", "meters per second" )
local text = string.gsub( text, "TACAN", "tackan" )
local text = string.gsub( text, "FARP", "farp" )
-- Replace ";" by "."
local text = string.gsub( text, ";", " . " )