Fix Cyrillic characters in transcription files - #5
Open
hobostay wants to merge 1 commit into
Open
Conversation
The ASCII art banners for CHKDSK and COMMAND in transcription files bundle_3, bundle_4, and bundle_7 used Cyrillic 'С' (U+0421) instead of ASCII 'C'. This replaces 192 Cyrillic characters with their ASCII equivalents to ensure the transcriptions are pure ASCII text. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
1_transcription/incorrectly used Cyrillic 'С' (U+0421) instead of ASCII 'C'bundle_3(96 chars),bundle_4(48 chars),bundle_7(48 chars)Details
The transcription files contain ASCII art page headers spelling out program names like "CHKDSK" and "COMMAND". During transcription, the letter 'C' was entered as the Cyrillic homoglyph 'С' (which looks identical but is a different Unicode codepoint). This caused the files to be detected as UTF-8 text instead of pure ASCII.
Files changed:
1_transcription/bundle_3— lines 297, 298, 315, 316, 350, 351, 368, 369 (CHKDSK banner)1_transcription/bundle_4— lines 3713, 3714, 3731, 3732 (COMMAND banner)1_transcription/bundle_7— lines 2, 3, 20, 21 (CHKDSK banner)Test plan
grep -P '[^\x00-\x7F]'returns empty)filecommand🤖 Generated with Claude Code