1
0
mirror of https://github.com/danielstjules/Stringy.git synced 2025-08-10 15:23:59 +02:00

Merge pull request #164 from iipavlov/hotfix/cyrillic_ascii_transliteration

This commit is contained in:
Daniel St. Jules
2017-05-10 10:41:34 -04:00
committed by GitHub

View File

@@ -1698,7 +1698,7 @@ class Stringy implements Countable, IteratorAggregate, ArrayAccess
'ᾀ', 'ᾁ', 'ᾂ', 'ᾃ', 'ᾄ', 'ᾅ', 'ᾆ', 'ᾇ', 'ὰ', 'ά',
'ᾰ', 'ᾱ', 'ᾲ', 'ᾳ', 'ᾴ', 'ᾶ', 'ᾷ', 'а', 'أ', 'အ',
'ာ', 'ါ', 'ǻ', 'ǎ', 'ª', 'ა', 'अ', 'ا', '', 'ä'],
'b' => ['б', 'β', 'Ъ', 'Ь', 'ب', 'ဗ', 'ბ', ''],
'b' => ['б', 'β', 'ب', 'ဗ', 'ბ', ''],
'c' => ['ç', 'ć', 'č', 'ĉ', 'ċ', ''],
'd' => ['ď', 'ð', 'đ', 'ƌ', 'ȡ', 'ɖ', 'ɗ', 'ᵭ', 'ᶁ', 'ᶑ',
'д', 'δ', 'د', 'ض', 'ဍ', 'ဒ', 'დ', ''],
@@ -1814,7 +1814,7 @@ class Stringy implements Countable, IteratorAggregate, ArrayAccess
'W' => ['Ω', 'Ώ', 'Ŵ', ''],
'X' => ['Χ', 'Ξ', ''],
'Y' => ['Ý', 'Ỳ', 'Ỷ', 'Ỹ', 'Ỵ', 'Ÿ', 'Ῠ', 'Ῡ', 'Ὺ', 'Ύ',
'Ы', 'Й', 'Υ', 'Ϋ', 'Ŷ', ''],
'Ы', 'Й', 'Υ', 'Ϋ', 'Ŷ', '', 'Ъ', 'Ь'],
'Z' => ['Ź', 'Ž', 'Ż', 'З', 'Ζ', ''],
'AE' => ['Æ', 'Ǽ'],
'Ch' => ['Ч'],
@@ -1868,6 +1868,10 @@ class Stringy implements Countable, IteratorAggregate, ArrayAccess
'de' => [
['ä', 'ö', 'ü', 'Ä', 'Ö', 'Ü' ],
['ae', 'oe', 'ue', 'AE', 'OE', 'UE'],
],
'bg' => [
['х', 'Х', 'щ', 'Щ', 'ъ', 'Ъ'],
['h', 'H', 'sht', 'SHT', 'a', 'А']
]
];