Transliteration of cyrillic characters

This commit is contained in:
bamboo2panda 2019-10-11 13:53:26 +03:00 committed by GitHub
parent 66c4a87cfc
commit dd457ee571
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 27 deletions

View File

@ -4982,7 +4982,6 @@ abstract class ComponentbuilderHelper
// http://stackoverflow.com/a/2021729/1429677
return preg_replace('/\s+/', ' ', $string);
}
// transliterate cyrillic characters
$transliterationTable = array(
'а' => 'a', 'б' => 'b', 'в' => 'v',
@ -4996,7 +4995,6 @@ abstract class ComponentbuilderHelper
'ч' => 'ch', 'ш' => 'sh', 'щ' => 'sch',
'ь' => '', 'ы' => 'y', 'ъ' => '',
'э' => 'e', 'ю' => 'yu', 'я' => 'ya',
'А' => 'A', 'Б' => 'B', 'В' => 'V',
'Г' => 'G', 'Д' => 'D', 'Е' => 'E',
'Ё' => 'E', 'Ж' => 'Zh', 'З' => 'Z',