diff --git a/bridge_master.py b/bridge_master.py index feba08c..c9e7280 100644 --- a/bridge_master.py +++ b/bridge_master.py @@ -2346,9 +2346,7 @@ class routerHBP(HBSYSTEM): #Allstar mode switch if CONFIG['ALLSTAR']['ENABLED'] and _int_dst_id == 8: logger.info('(%s) Reflector: voice called - TG 8 AllStar"', self._system) - _say.append(words[_lang]['A']) - _say.append(words[_lang]['S']) - _say.append(words[_lang]['L']) + _say.append(words[_lang]['all-star-link-mode']) _say.append(words[_lang]['silence']) self.STATUS[_slot]['_stopTgAnnounce'] = True self.STATUS[_slot]['_allStarMode'] = True diff --git a/i8n_voice_map.py b/i8n_voice_map.py index 401d2c1..b1654cf 100644 --- a/i8n_voice_map.py +++ b/i8n_voice_map.py @@ -109,13 +109,15 @@ voiceMap = { 'Z': 'zulu', 'to': 'silence', 'notlinked': 'not-linked', - 'linkedto': 'linked-to' + 'linkedto': 'linked-to', + 'allstar-link-mode': 'alpha' }, 'en_US': { 'to': '2', 'freedmr': 'silence', - 'this-is': 'silence' + 'this-is': 'silence', + 'allstar-link-mode': 'alpha' }, 'es_ES': { @@ -156,7 +158,8 @@ voiceMap = { 'Z': 'zulu', 'to': 'silence', 'notlinked': 'not-linked', - 'linkedto': 'linked-to' + 'linkedto': 'linked-to', + 'allstar-link-mode': 'alfa' }, 'es_ES_2': { '1': 'one', @@ -196,7 +199,8 @@ voiceMap = { 'Z': 'zulu', 'to': 'silence', 'notlinked': 'not-linked', - 'linkedto': 'linked-to' + 'linkedto': 'linked-to', + 'allstar-link-mode': 'alpha' }, 'fr_FR': { @@ -228,7 +232,8 @@ voiceMap = { 'Z': 'zulu', 'to': 'silence', 'notlinked': 'not-linked', - 'linkedto': 'linked-to' + 'linkedto': 'linked-to', + 'allstar-link-mode': 'alpha' }, 'pt_PT': { @@ -260,7 +265,8 @@ voiceMap = { 'Z': 'zulu', 'to': 'silence', 'notlinked': 'not-linked', - 'linkedto': 'linked-to' + 'linkedto': 'linked-to', + 'allstar-link-mode': 'alpha' }, 'el_GR': { @@ -292,55 +298,63 @@ voiceMap = { 'Z': 'zulu', 'to': 'silence', 'notlinked': 'not-linked', - 'linkedto': 'linked-to' + 'allstar-link-mode': 'alpha' }, 'de_DE': { 'to': 'silence', + 'allstar-link-mode': 'A' }, 'dk_DK': { 'to': 'silence', 'freedmr': 'silence', - 'this-is': 'silence' + 'this-is': 'silence', + 'allstar-link-mode': 'A' }, 'it_IT': { 'to': 'silence', 'freedmr': 'silence', - 'this-is': 'silence' + 'this-is': 'silence', + 'allstar-link-mode': 'A' }, 'no_NO': { 'to': 'silence', 'freedmr': 'silence', - 'this-is': 'silence' + 'this-is': 'silence', + 'allstar-link-mode': 'A' }, 'pl_PL': { 'to': 'silence', 'freedmr': 'silence', - 'this-is': 'silence' + 'this-is': 'silence', + 'allstar-link-mode': 'A' }, 'se_SE': { 'to': 'silence', 'freedmr': 'silence', - 'this-is': 'silence' + 'this-is': 'silence', + 'allstar-link-mode': 'A' }, 'CW': { 'to': 'silence', 'freedmr': 'silence', 'this-is': 'silence', - 'linkedto': 'silence' + 'linkedto': 'silence', + 'allstar-link-mode': 'T' }, 'th_TH': { 'to': 'silence', + 'allstar-link-mode': 'A' },