mirror of
https://github.com/MarekZegare4/MeshCore-Solo.git
synced 2026-08-01 17:56:12 +00:00
feat: add Icelandic and Romanian legacy cedilla transliteration
Adds ð/Ð (eth), þ/Þ (thorn) for Icelandic, and ţ/Ţ (t with cedilla) for legacy-encoded Romanian text. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Sonnet 4.6
parent
b0552e246a
commit
2bc6dae78e
@@ -85,6 +85,11 @@ public:
|
|||||||
case 0x021B: return 't'; case 0x021A: return 'T'; // ț Ț
|
case 0x021B: return 't'; case 0x021A: return 'T'; // ț Ț
|
||||||
// Croatian
|
// Croatian
|
||||||
case 0x0111: return 'd'; case 0x0110: return 'D'; // đ Đ
|
case 0x0111: return 'd'; case 0x0110: return 'D'; // đ Đ
|
||||||
|
// Icelandic
|
||||||
|
case 0x00F0: return 'd'; case 0x00D0: return 'D'; // ð Ð (eth)
|
||||||
|
case 0x00FE: return 't'; case 0x00DE: return 'T'; // þ Þ (thorn)
|
||||||
|
// Romanian cedilla variants (legacy encoding)
|
||||||
|
case 0x0163: return 't'; case 0x0162: return 'T'; // ţ Ţ
|
||||||
// Turkish
|
// Turkish
|
||||||
case 0x011F: return 'g'; case 0x011E: return 'G'; // ğ Ğ
|
case 0x011F: return 'g'; case 0x011E: return 'G'; // ğ Ğ
|
||||||
case 0x015F: return 's'; case 0x015E: return 'S'; // ş Ş
|
case 0x015F: return 's'; case 0x015E: return 'S'; // ş Ş
|
||||||
|
|||||||
Reference in New Issue
Block a user