I am trying to get macOS Voiceover to read a menu item differently than how it's written. In my particular case, it's reading "5m" as "5 meters" when I actually want "5 minutes".
NSMenuItem conforms to NSAccessibilityProtocol, which has a setAccessibilityLabel function: https://developer.apple.com/documentation/appkit/nsaccessibilityprotocol/setaccessibilitylabel(_:). I think that's what I need. Could we expose this on the muda MenuItem?
I am trying to get macOS Voiceover to read a menu item differently than how it's written. In my particular case, it's reading "5m" as "5 meters" when I actually want "5 minutes".
NSMenuItemconforms toNSAccessibilityProtocol, which has asetAccessibilityLabelfunction: https://developer.apple.com/documentation/appkit/nsaccessibilityprotocol/setaccessibilitylabel(_:). I think that's what I need. Could we expose this on the mudaMenuItem?