Skip to content

Commit 4fe4e30

Browse files
masonasonsclaude
andcommitted
Fix mojibake on the Speech tab buttons (rc.exe isn't UTF-8)
The resource compiler doesn't read app.rc as UTF-8, so the "…" ellipsis showed as "…". Use plain "..." in the .rc (C++ menu strings are unaffected — they go through cl /utf-8). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent df11b99 commit 4fe4e30

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

windows/resources/app.rc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ FONT 9, "Segoe UI"
108108
BEGIN
109109
LTEXT "Choose which details the screen reader speaks, and their order, for each kind of row:",
110110
-1, 10, 10, 220, 18
111-
PUSHBUTTON "Configure &Posts", IDC_SET_SPEECH_POSTS, 10, 36, 140, 16
112-
PUSHBUTTON "Configure &Users", IDC_SET_SPEECH_USERS, 10, 58, 140, 16
113-
PUSHBUTTON "Configure &Notifications", IDC_SET_SPEECH_NOTIFS, 10, 80, 140, 16
111+
PUSHBUTTON "Configure &Posts...", IDC_SET_SPEECH_POSTS, 10, 36, 140, 16
112+
PUSHBUTTON "Configure &Users...", IDC_SET_SPEECH_USERS, 10, 58, 140, 16
113+
PUSHBUTTON "Configure &Notifications...", IDC_SET_SPEECH_NOTIFS, 10, 80, 140, 16
114114
END
115115

116116
IDD_SPEECH_DETAIL DIALOGEX 0, 0, 264, 200

0 commit comments

Comments
 (0)