The curious case of the disappearing Polish S (2015)
- Programming
- Developer Tools
- Internationalization
- Europe
The post is a small software archaeology story about a very specific bug with big lessons. Polish typists often entered Ś with Alt+S on older layouts. On Windows, the right Alt key is often exposed as AltGr, which many apps and browsers saw as Ctrl+Alt. That meant websites that trapped Ctrl+S to override browser save behavior could accidentally swallow a normal letter input. The article walks through how that happened, why it was so persistent, and how a one-line modifier check fixed it.
If your product captures keyboard shortcuts, audit them against international layouts instead of assuming US keys and modifier behavior. Also treat text normalization and search folding as locale-specific work, because even a single letter like ł can break naive Unicode handling.
-
aresluna.org
- Discuss on HN