Chris@0
|
1 <?php
|
Chris@0
|
2
|
Chris@0
|
3 /**
|
Chris@0
|
4 * @file
|
Chris@0
|
5 * Generic transliteration data for the PhpTransliteration class.
|
Chris@0
|
6 */
|
Chris@0
|
7
|
Chris@0
|
8 $base = [
|
Chris@0
|
9 0x00 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
Chris@0
|
10 0x10 => ',', ',', '.', ':', ';', '!', '?', NULL, NULL, '...', NULL, NULL, NULL, NULL, NULL, NULL,
|
Chris@0
|
11 0x20 => '', '', '', '~', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
Chris@0
|
12 0x30 => '..', '-', '-', '_', '_', '(', ')', '{', '}', '[', ']', '[(', ')] ', '<<', '>>', '<',
|
Chris@0
|
13 0x40 => '>', '[', '] ', '{', '}', NULL, NULL, '[', ']', '', '', '', '', '', '', '',
|
Chris@0
|
14 0x50 => ',', ',', '.', '', ';', ':', '?', '!', '-', '(', ')', '{', '}', '[', ']', '#',
|
Chris@0
|
15 0x60 => '&', '*', '+', '-', '<', '>', '=', '', '\\', '$', '%', '@', NULL, NULL, NULL, NULL,
|
Chris@0
|
16 0x70 => '', '', '', NULL, '', NULL, ' a', 'a', ' u', 'u', ' i', 'i', ' ', '', ' ', '',
|
Chris@0
|
17 0x80 => '', 'a', 'a', 'a', 'a', 'w', 'w', 'a', 'a', 'y', 'y', 'y', 'y', 'a', 'a', 'b',
|
Chris@0
|
18 0x90 => 'b', 'b', 'b', 't', 't', 't', 't', 't', 't', 'th', 'th', 'th', 'th', 'j', 'j', 'j',
|
Chris@0
|
19 0xA0 => 'j', 'h', 'h', 'h', 'h', 'kh', 'kh', 'kh', 'kh', 'd', 'd', 'dh', 'dh', 'r', 'r', 'z',
|
Chris@0
|
20 0xB0 => 'z', 's', 's', 's', 's', 'sh', 'sh', 'sh', 'sh', 's', 's', 's', 's', 'd', 'd', 'd',
|
Chris@0
|
21 0xC0 => 'd', 't', 't', 't', 't', 'z', 'z', 'z', 'z', '', '', '', '', 'gh', 'gh', 'gh',
|
Chris@0
|
22 0xD0 => 'gh', 'f', 'f', 'f', 'f', 'q', 'q', 'q', 'q', 'k', 'k', 'k', 'k', 'l', 'l', 'l',
|
Chris@0
|
23 0xE0 => 'l', 'm', 'm', 'm', 'm', 'n', 'n', 'n', 'n', 'h', 'h', 'h', 'h', 'w', 'w', 'y',
|
Chris@0
|
24 0xF0 => 'y', 'y', 'y', 'y', 'y', 'la', 'la', 'la', 'la', 'la', 'la', 'la', 'la', NULL, NULL, '',
|
Chris@0
|
25 ];
|