Update: These instructions have been replaced by #44. Please use those instructions instead of the following...
wifi-heatmapper uses the Windows netsh wlan show interfaces command to get information about the Wi-Fi signal strength. The output of the netsh ... command is localized for the system language. For example, English systems use the phrase "Transmit rate (Mbps)" for the txRate value, while an Italian system uses the phrase "Velocità trasmissione (Mbps)". (See the sample output below.)
[Update: See the comment below for the commands to use.]
wifi-heatmapper uses a set of localization files in the data/localization folder to create a lookup table between the localized phrase (like "Velocità trasmissione (Mbps)") and the program's internal name (like txRate).
Please help us to create additional localization files for other languages. The program currently has translations for a few languages. To add your language, issue the netsh wlan show interfaces from a terminal. Copy the output and paste it as a new entry below. Let us know what OS (Win10, Win11) you're using and the system language. (Feel free to remove any personal data from the SSID, BSSID, Profile, and any of the MAC addresses.) Thanks!
Update 2: Add the property "name" to the JSON, since it's also used.
Sample localization file (Italian)
{
"ssid": "SSID",
"bssid": "BSSID",
"signalStrength": "Segnale",
"channel": "Canale",
"security": "Autenticazione",
"txRate": "Velocità trasmissione (Mbps)",
"phyMode": "Tipo frequenza radio",
"name": "Nome"
}
// Output from netsh wlan show interfaces on Windows 10 - Italian
//
// Interfacce presenti nel sistema: 1:
// Nome : Wi-Fi
// Descrizione : Intel(R) Wi-Fi 6 AX201 160MHz
// GUID : e36a6a75-d662-4a6b-9399-f1304b0fe75e
// Indirizzo fisico : xx:xx:xx:xx:xx:xx
// Stato : connessa
// SSID : SomeSSID
// BSSID : xx:xx:xx:xx:xx:xx
// Tipo di rete : Infrastruttura
// Tipo frequenza radio : 802.11n
// Autenticazione : WPA2-Personal
// Crittografia : CCMP
// Modalità connessione : Profilo
// Canale : 4
// Velocità ricezione (Mbps) : 130
// Velocità trasmissione (Mbps) : 130
// Segnale : 85%
// Profilo : SomeProfile
// Stato rete ospitata : Non disponibile
Update: These instructions have been replaced by #44. Please use those instructions instead of the following...
wifi-heatmapper uses the Windows
netsh wlan show interfacescommand to get information about the Wi-Fi signal strength. The output of thenetsh ...command is localized for the system language. For example, English systems use the phrase "Transmit rate (Mbps)" for the txRate value, while an Italian system uses the phrase "Velocità trasmissione (Mbps)". (See the sample output below.)[Update: See the comment below for the commands to use.]
wifi-heatmapper uses a set of localization files in the data/localization folder to create a lookup table between the localized phrase (like "Velocità trasmissione (Mbps)") and the program's internal name (like txRate).
Please help us to create additional localization files for other languages. The program currently has translations for a few languages. To add your language, issue the
netsh wlan show interfacesfrom a terminal. Copy the output and paste it as a new entry below. Let us know what OS (Win10, Win11) you're using and the system language. (Feel free to remove any personal data from the SSID, BSSID, Profile, and any of the MAC addresses.) Thanks!Update 2: Add the property "name" to the JSON, since it's also used.
Sample localization file (Italian)