gh-61456: Add Thai language codec aliases (#15079)

Adding aliases for Thai language support. The current code page is an implementation of the windows code page.
This will alias '874', 'ms874', and 'windows_874' to cp874, adding Thai language support for those users.

Co-authored-by: Łukasz Langa <lukasz@langa.pl>
This commit is contained in:
btwood 2025-04-07 05:06:32 -06:00 committed by GitHub
parent f2daa96c81
commit 895d983b5c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View File

@ -204,6 +204,11 @@ aliases = {
'csibm869' : 'cp869',
'ibm869' : 'cp869',
# cp874 codec
'874' : 'cp874',
'ms874' : 'cp874',
'windows_874' : 'cp874',
# cp932 codec
'932' : 'cp932',
'ms932' : 'cp932',

View File

@ -0,0 +1 @@
Added aliases for Thai Language using Microsoft Code Pages.