I have improved how to support the use of a different Teams Client language than English.
Implementation Change
The language configuration was extracted from the code to the PowerTools.ini settings file.
It makes it much easier to adapt the PowerTools to your language, without having to edit the code.
Also the language dependency is clearly identifiable.
The main function/ handling is the done in the code with the functions Teams_GetLangName()
See example for the Mute functionality in the Teams_Mute function:
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
Teams_Mute(State := 2,showInfo:=true,restoreWin:=true){ | |
; State: | |
; 0: mute off, unmute | |
; 1: mute on | |
; 2*: (Default): Toggle mute state | |
WinId := Teams_GetMeetingWindow() | |
If !WinId ; empty | |
return | |
If (restoreWin) | |
WinGet, curWinId, ID, A | |
If (showInfo) { | |
displayTime := 2000 | |
Tray_Icon_On := "HBITMAP:*" . Create_Mic_On_ico() | |
Tray_Icon_Off := "HBITMAP:*" . Create_Mic_Off_ico() | |
} | |
UIA := UIA_Interface() | |
TeamsEl := UIA.ElementFromHandle(WinId) | |
Lang := Teams_GetLang() | |
MuteName := Teams_GetLangName("Mute",Lang) | |
If (MuteName="") { | |
If !InStr(Lang,"en-") { | |
Text := "Language " . Lang . " not implemented!" | |
sUrl := Teamsy_Help("lang",false) | |
PowerTools_ErrDlg(Text,sUrl:="") | |
} | |
MuteName := "Mute" | |
UnmuteName := "Unmute" | |
} | |
If (UnmuteName ="") { | |
UnmuteName := Teams_GetLangName("Unmute",Lang) | |
} | |
El:=TeamsEl.FindFirstBy("AutomationId=microphone-button") | |
If RegExMatch(El.Name,"^" . MuteName) { | |
If (State = 0) { | |
If (showInfo) | |
Tooltip("Teams Mic is already on.") | |
return | |
} Else { | |
If (showInfo) { | |
Tooltip("Teams Mute Mic...",displayTime) | |
TrayIcon_Mic_Off := "HBITMAP:*" . Create_Mic_Off_ico() | |
TrayIcon(TrayIcon_Mic_Off,displayTime) | |
} | |
El.Click() ; activates the window | |
If (restoreWin) | |
WinActivate, ahk_id %curWinId% | |
return | |
} | |
} | |
If RegExMatch(El.Name,"^" . UnmuteName) { | |
If (State = 1) { | |
If (showTooltip) | |
Tooltip("Teams Mic is already off.") | |
return | |
} Else { | |
If (showInfo) { | |
Tooltip("Teams Unmute Mic...",displayTime) | |
TrayIcon_Mic_On := "HBITMAP:*" . Create_Mic_On_ico() | |
TrayIcon(TrayIcon_Mic_On,displayTime) | |
} | |
El.Click() | |
If (restoreWin) | |
WinActivate, ahk_id %curWinId% | |
return | |
} | |
} | |
} ; eofun |
Configuration
You need to download and setup the PowerTools.ini file.
Only the element in the PowerTools.ini file [Teams] section TeamsLangNames properties need to be filled to get the Teams PowerTools running for your specific client language setting.
You can use an online Json validator to setup the Json setting string like https://jsonlint.com/
In the ini file, the json string has to be compressed i.e. without line breaks.
You can use the UIAViewer available in the ahk GitHub repository to get the Name of the UI Elements - as demonstrated in the linked video of this previous post.
Usage
You will get an error if your client uses a language different than English and it wasn't configured in the ini file properly.