Drupal 8.0.0 beta 12. More info: https://www.drupal.org/node/2514176
This commit is contained in:
commit
9921556621
13277 changed files with 1459781 additions and 0 deletions
288
core/lib/Drupal/Component/Transliteration/PhpTransliteration.php
Normal file
288
core/lib/Drupal/Component/Transliteration/PhpTransliteration.php
Normal file
|
@ -0,0 +1,288 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Contains \Drupal\Component\Transliteration\PhpTransliteration.
|
||||
*
|
||||
* Some parts of this code were derived from the MediaWiki project's UtfNormal
|
||||
* class, Copyright © 2004 Brion Vibber <brion@pobox.com>,
|
||||
* http://www.mediawiki.org/
|
||||
*/
|
||||
|
||||
namespace Drupal\Component\Transliteration;
|
||||
|
||||
/**
|
||||
* Implements transliteration without using the PECL extensions.
|
||||
*
|
||||
* Transliterations are done character-by-character, by looking up non-US-ASCII
|
||||
* characters in a transliteration database.
|
||||
*
|
||||
* The database comes from two types of files, both of which are searched for in
|
||||
* the PhpTransliteration::$dataDirectory directory. First, language-specific
|
||||
* overrides are searched (see PhpTransliteration::readLanguageOverrides()). If
|
||||
* there is no language-specific override for a character, the generic
|
||||
* transliteration character tables are searched (see
|
||||
* PhpTransliteration::readGenericData()). If looking up the character in the
|
||||
* generic table results in a NULL value, or an illegal character is
|
||||
* encountered, then a substitute character is returned.
|
||||
*/
|
||||
class PhpTransliteration implements TransliterationInterface {
|
||||
|
||||
/**
|
||||
* Directory where data for transliteration resides.
|
||||
*
|
||||
* The constructor sets this (by default) to subdirectory 'data' underneath
|
||||
* the directory where the class's PHP file resides.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $dataDirectory;
|
||||
|
||||
/**
|
||||
* Associative array of language-specific character transliteration tables.
|
||||
*
|
||||
* The outermost array keys are language codes. For each language code key,
|
||||
* the value is an array whose keys are Unicode character codes, and whose
|
||||
* values are the transliterations of those characters to US-ASCII. This is
|
||||
* set up as needed in PhpTransliteration::replace() by calling
|
||||
* PhpTransliteration::readLanguageOverrides().
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $languageOverrides = array();
|
||||
|
||||
/**
|
||||
* Non-language-specific transliteration tables.
|
||||
*
|
||||
* Array whose keys are the upper two bytes of the Unicode character, and
|
||||
* whose values are an array of transliterations for each lower-two bytes
|
||||
* character code. This is set up as needed in PhpTransliteration::replace()
|
||||
* by calling PhpTransliteration::readGenericData().
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $genericMap = array();
|
||||
|
||||
/**
|
||||
* Constructs a transliteration object.
|
||||
*
|
||||
* @param string $data_directory
|
||||
* (optional) The directory where data files reside. If omitted, defaults
|
||||
* to subdirectory 'data' underneath the directory where the class's PHP
|
||||
* file resides.
|
||||
*/
|
||||
public function __construct($data_directory = NULL) {
|
||||
$this->dataDirectory = (isset($data_directory)) ? $data_directory : __DIR__ . '/data';
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function removeDiacritics($string) {
|
||||
$result = '';
|
||||
|
||||
foreach (preg_split('//u', $string, 0, PREG_SPLIT_NO_EMPTY) as $character) {
|
||||
$code = self::ordUTF8($character);
|
||||
|
||||
// These two Unicode ranges include the accented US-ASCII letters, with a
|
||||
// few characters that aren't accented letters mixed in. So define the
|
||||
// ranges and the excluded characters.
|
||||
$range1 = $code > 0x00bf && $code < 0x017f;
|
||||
$exclusions_range1 = array(0x00d0, 0x00d7, 0x00f0, 0x00f7, 0x0138, 0x014a, 0x014b);
|
||||
$range2 = $code > 0x01cc && $code < 0x0250;
|
||||
$exclusions_range2 = array(0x01DD, 0x01f7, 0x021c, 0x021d, 0x0220, 0x0221, 0x0241, 0x0242, 0x0245);
|
||||
|
||||
$replacement = $character;
|
||||
if (($range1 && !in_array($code, $exclusions_range1)) || ($range2 && !in_array($code, $exclusions_range2))) {
|
||||
$to_add = $this->lookupReplacement($code, 'xyz');
|
||||
if(strlen($to_add) === 1) {
|
||||
$replacement = $to_add;
|
||||
}
|
||||
}
|
||||
|
||||
$result .= $replacement;
|
||||
}
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function transliterate($string, $langcode = 'en', $unknown_character = '?', $max_length = NULL) {
|
||||
$result = '';
|
||||
$length = 0;
|
||||
// Split into Unicode characters and transliterate each one.
|
||||
foreach (preg_split('//u', $string, 0, PREG_SPLIT_NO_EMPTY) as $character) {
|
||||
$code = self::ordUTF8($character);
|
||||
if ($code == -1) {
|
||||
$to_add = $unknown_character;
|
||||
}
|
||||
else {
|
||||
$to_add = $this->replace($code, $langcode, $unknown_character);
|
||||
}
|
||||
|
||||
// Check if this exceeds the maximum allowed length.
|
||||
if (isset($max_length)) {
|
||||
$length += strlen($to_add);
|
||||
if ($length > $max_length) {
|
||||
// There is no more space.
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
|
||||
$result .= $to_add;
|
||||
}
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* Finds the character code for a UTF-8 character: like ord() but for UTF-8.
|
||||
*
|
||||
* @param string $character
|
||||
* A single UTF-8 character.
|
||||
*
|
||||
* @return int
|
||||
* The character code, or -1 if an illegal character is found.
|
||||
*/
|
||||
protected static function ordUTF8($character) {
|
||||
$first_byte = ord($character[0]);
|
||||
|
||||
if (($first_byte & 0x80) == 0) {
|
||||
// Single-byte form: 0xxxxxxxx.
|
||||
return $first_byte;
|
||||
}
|
||||
if (($first_byte & 0xe0) == 0xc0) {
|
||||
// Two-byte form: 110xxxxx 10xxxxxx.
|
||||
return (($first_byte & 0x1f) << 6) + (ord($character[1]) & 0x3f);
|
||||
}
|
||||
if (($first_byte & 0xf0) == 0xe0) {
|
||||
// Three-byte form: 1110xxxx 10xxxxxx 10xxxxxx.
|
||||
return (($first_byte & 0x0f) << 12) + ((ord($character[1]) & 0x3f) << 6) + (ord($character[2]) & 0x3f);
|
||||
}
|
||||
if (($first_byte & 0xf8) == 0xf0) {
|
||||
// Four-byte form: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx.
|
||||
return (($first_byte & 0x07) << 18) + ((ord($character[1]) & 0x3f) << 12) + ((ord($character[2]) & 0x3f) << 6) + (ord($character[3]) & 0x3f);
|
||||
}
|
||||
|
||||
// Other forms are not legal.
|
||||
return -1;
|
||||
}
|
||||
|
||||
/**
|
||||
* Replaces a single Unicode character using the transliteration database.
|
||||
*
|
||||
* @param int $code
|
||||
* The character code of a Unicode character.
|
||||
* @param string $langcode
|
||||
* The language code of the language the character is in.
|
||||
* @param string $unknown_character
|
||||
* The character to substitute for characters without transliterated
|
||||
* equivalents.
|
||||
*
|
||||
* @return string
|
||||
* US-ASCII replacement character. If it has a mapping, it is returned;
|
||||
* otherwise, $unknown_character is returned. The replacement can contain
|
||||
* multiple characters.
|
||||
*/
|
||||
protected function replace($code, $langcode, $unknown_character) {
|
||||
if ($code < 0x80) {
|
||||
// Already lower ASCII.
|
||||
return chr($code);
|
||||
}
|
||||
|
||||
// See if there is a language-specific override for this character.
|
||||
if (!isset($this->languageOverrides[$langcode])) {
|
||||
$this->readLanguageOverrides($langcode);
|
||||
}
|
||||
if (isset($this->languageOverrides[$langcode][$code])) {
|
||||
return $this->languageOverrides[$langcode][$code];
|
||||
}
|
||||
|
||||
return $this->lookupReplacement($code, $unknown_character);
|
||||
}
|
||||
|
||||
/**
|
||||
* Look up the generic replacement for a UTF-8 character code.
|
||||
*
|
||||
* @param $code
|
||||
* The UTF-8 character code.
|
||||
* @param string $unknown_character
|
||||
* (optional) The character to substitute for characters without entries in
|
||||
* the replacement tables.
|
||||
*
|
||||
* @return string
|
||||
* US-ASCII replacement characters. If it has a mapping, it is returned;
|
||||
* otherwise, $unknown_character is returned. The replacement can contain
|
||||
* multiple characters.
|
||||
*/
|
||||
protected function lookupReplacement($code, $unknown_character = '?') {
|
||||
// See if there is a generic mapping for this character.
|
||||
$bank = $code >> 8;
|
||||
if (!isset($this->genericMap[$bank])) {
|
||||
$this->readGenericData($bank);
|
||||
}
|
||||
$code = $code & 0xff;
|
||||
return isset($this->genericMap[$bank][$code]) ? $this->genericMap[$bank][$code] : $unknown_character;
|
||||
}
|
||||
|
||||
/**
|
||||
* Reads in language overrides for a language code.
|
||||
*
|
||||
* The data is read from files named "$langcode.php" in
|
||||
* PhpTransliteration::$dataDirectory. These files should set up an array
|
||||
* variable $overrides with an element whose key is $langcode and whose value
|
||||
* is an array whose keys are character codes, and whose values are their
|
||||
* transliterations in this language. The character codes can be for any valid
|
||||
* Unicode character, independent of the number of bytes.
|
||||
*
|
||||
* @param $langcode
|
||||
* Code for the language to read.
|
||||
*/
|
||||
protected function readLanguageOverrides($langcode) {
|
||||
// Figure out the file name to use by sanitizing the language code,
|
||||
// just in case.
|
||||
$file = $this->dataDirectory . '/' . preg_replace('/[^a-zA-Z\-]/', '', $langcode) . '.php';
|
||||
|
||||
// Read in this file, which should set up a variable called $overrides,
|
||||
// which will be local to this function.
|
||||
if (is_file($file)) {
|
||||
include $file;
|
||||
}
|
||||
if (!isset($overrides) || !is_array($overrides)) {
|
||||
$overrides = array($langcode => array());
|
||||
}
|
||||
$this->languageOverrides[$langcode] = $overrides[$langcode];
|
||||
}
|
||||
|
||||
/**
|
||||
* Reads in generic transliteration data for a bank of characters.
|
||||
*
|
||||
* The data is read in from a file named "x$bank.php" (with $bank in
|
||||
* hexadecimal notation) in PhpTransliteration::$dataDirectory. These files
|
||||
* should set up a variable $bank containing an array whose numerical indices
|
||||
* are the remaining two bytes of the character code, and whose values are the
|
||||
* transliterations of these characters into US-ASCII. Note that the maximum
|
||||
* Unicode character that can be encoded in this way is 4 bytes.
|
||||
*
|
||||
* @param $bank
|
||||
* First two bytes of the Unicode character, or 0 for the ASCII range.
|
||||
*/
|
||||
protected function readGenericData($bank) {
|
||||
// Figure out the file name.
|
||||
$file = $this->dataDirectory . '/x' . sprintf('%02x', $bank) . '.php';
|
||||
|
||||
// Read in this file, which should set up a variable called $base, which
|
||||
// will be local to this function.
|
||||
if (is_file($file)) {
|
||||
include $file;
|
||||
}
|
||||
if (!isset($base) || !is_array($base)) {
|
||||
$base = array();
|
||||
}
|
||||
|
||||
// Save this data.
|
||||
$this->genericMap[$bank] = $base;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,54 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Contains \Drupal\Component\Transliteration\TransliterationInterface.
|
||||
*/
|
||||
|
||||
namespace Drupal\Component\Transliteration;
|
||||
|
||||
/**
|
||||
* Defines an interface for classes providing transliteration.
|
||||
*
|
||||
* @ingroup transliteration
|
||||
*/
|
||||
interface TransliterationInterface {
|
||||
|
||||
/**
|
||||
* Removes diacritics (accents) from certain letters.
|
||||
*
|
||||
* This only applies to certain letters: Accented Latin characters like
|
||||
* a-with-acute-accent, in the UTF-8 character range of 0xE0 to 0xE6 and
|
||||
* 01CD to 024F. Replacements that would result in the string changing length
|
||||
* are excluded, as well as characters that are not accented US-ASCII letters.
|
||||
*
|
||||
* @param string $string
|
||||
* The string holding diacritics.
|
||||
*
|
||||
* @return string
|
||||
* $string with accented letters replaced by their unaccented equivalents.
|
||||
*/
|
||||
public function removeDiacritics($string);
|
||||
|
||||
/**
|
||||
* Transliterates text from Unicode to US-ASCII.
|
||||
*
|
||||
* @param string $string
|
||||
* The string to transliterate.
|
||||
* @param string $langcode
|
||||
* (optional) The language code of the language the string is in. Defaults
|
||||
* to 'en' if not provided. Warning: this can be unfiltered user input.
|
||||
* @param string $unknown_character
|
||||
* (optional) The character to substitute for characters in $string without
|
||||
* transliterated equivalents. Defaults to '?'.
|
||||
* @param int $max_length
|
||||
* (optional) If provided, return at most this many characters, ensuring
|
||||
* that the transliteration does not split in the middle of an input
|
||||
* character's transliteration.
|
||||
*
|
||||
* @return string
|
||||
* $string with non-US-ASCII characters transliterated to US-ASCII
|
||||
* characters, and unknown characters replaced with $unknown_character.
|
||||
*/
|
||||
public function transliterate($string, $langcode = 'en', $unknown_character = '?', $max_length = NULL);
|
||||
}
|
15
core/lib/Drupal/Component/Transliteration/data/de.php
Normal file
15
core/lib/Drupal/Component/Transliteration/data/de.php
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* German transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$overrides['de'] = array(
|
||||
0xC4 => 'Ae',
|
||||
0xD6 => 'Oe',
|
||||
0xDC => 'Ue',
|
||||
0xE4 => 'ae',
|
||||
0xF6 => 'oe',
|
||||
0xFC => 'ue',
|
||||
);
|
13
core/lib/Drupal/Component/Transliteration/data/dk.php
Normal file
13
core/lib/Drupal/Component/Transliteration/data/dk.php
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Danish transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$overrides['dk'] = array(
|
||||
0xC5 => 'Aa',
|
||||
0xD8 => 'Oe',
|
||||
0xE5 => 'aa',
|
||||
0xF8 => 'oe',
|
||||
);
|
21
core/lib/Drupal/Component/Transliteration/data/eo.php
Normal file
21
core/lib/Drupal/Component/Transliteration/data/eo.php
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Esperanto transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$overrides['eo'] = array(
|
||||
0x18 => 'Cx',
|
||||
0x19 => 'cx',
|
||||
0x11C => 'Gx',
|
||||
0x11D => 'gx',
|
||||
0x124 => 'Hx',
|
||||
0x125 => 'hx',
|
||||
0x134 => 'Jx',
|
||||
0x135 => 'jx',
|
||||
0x15C => 'Sx',
|
||||
0x15D => 'sx',
|
||||
0x16C => 'Ux',
|
||||
0x16D => 'ux',
|
||||
);
|
31
core/lib/Drupal/Component/Transliteration/data/kg.php
Normal file
31
core/lib/Drupal/Component/Transliteration/data/kg.php
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Kyrgyz transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$overrides['kg'] = array(
|
||||
0x41 => 'E',
|
||||
0x416 => 'C',
|
||||
0x419 => 'J',
|
||||
0x425 => 'X',
|
||||
0x426 => 'TS',
|
||||
0x429 => 'SCH',
|
||||
0x42E => 'JU',
|
||||
0x42F => 'JA',
|
||||
0x436 => 'c',
|
||||
0x439 => 'j',
|
||||
0x445 => 'x',
|
||||
0x446 => 'ts',
|
||||
0x449 => 'sch',
|
||||
0x44E => 'ju',
|
||||
0x44F => 'ja',
|
||||
0x451 => 'e',
|
||||
0x4A2 => 'H',
|
||||
0x4A3 => 'h',
|
||||
0x4AE => 'W',
|
||||
0x4AF => 'w',
|
||||
0x4E8 => 'Q',
|
||||
0x4E9 => 'q',
|
||||
);
|
18
core/lib/Drupal/Component/Transliteration/data/x00.php
Normal file
18
core/lib/Drupal/Component/Transliteration/data/x00.php
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
// Note: to save memory plain ASCII mappings have been left out.
|
||||
0x80 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0x90 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0xA0 => ' ', '!', 'C/', 'PS', '$?', 'Y=', '|', 'SS', '"', '(C)', 'a', '<<', '!', '-', '(R)', '-',
|
||||
0xB0 => 'deg', '+-', '2', '3', '\'', 'm', 'P', ':', ',', '1', 'o', '>>', ' 1/4', ' 1/2', ' 3/4', '?',
|
||||
0xC0 => 'A', 'A', 'A', 'A', 'A', 'A', 'AE', 'C', 'E', 'E', 'E', 'E', 'I', 'I', 'I', 'I',
|
||||
0xD0 => 'D', 'N', 'O', 'O', 'O', 'O', 'O', '*', 'O', 'U', 'U', 'U', 'U', 'Y', 'TH', 'ss',
|
||||
0xE0 => 'a', 'a', 'a', 'a', 'a', 'a', 'ae', 'c', 'e', 'e', 'e', 'e', 'i', 'i', 'i', 'i',
|
||||
0xF0 => 'd', 'n', 'o', 'o', 'o', 'o', 'o', '/', 'o', 'u', 'u', 'u', 'u', 'y', 'th', 'y',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x01.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x01.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'A', 'a', 'A', 'a', 'A', 'a', 'C', 'c', 'C', 'c', 'C', 'c', 'C', 'c', 'D', 'd',
|
||||
0x10 => 'D', 'd', 'E', 'e', 'E', 'e', 'E', 'e', 'E', 'e', 'E', 'e', 'G', 'g', 'G', 'g',
|
||||
0x20 => 'G', 'g', 'G', 'g', 'H', 'h', 'H', 'h', 'I', 'i', 'I', 'i', 'I', 'i', 'I', 'i',
|
||||
0x30 => 'I', 'i', 'IJ', 'ij', 'J', 'j', 'K', 'k', 'q', 'L', 'l', 'L', 'l', 'L', 'l', 'L',
|
||||
0x40 => 'l', 'L', 'l', 'N', 'n', 'N', 'n', 'N', 'n', '\'n', 'N', 'n', 'O', 'o', 'O', 'o',
|
||||
0x50 => 'O', 'o', 'OE', 'oe', 'R', 'r', 'R', 'r', 'R', 'r', 'S', 's', 'S', 's', 'S', 's',
|
||||
0x60 => 'S', 's', 'T', 't', 'T', 't', 'T', 't', 'U', 'u', 'U', 'u', 'U', 'u', 'U', 'u',
|
||||
0x70 => 'U', 'u', 'U', 'u', 'W', 'w', 'Y', 'y', 'Y', 'Z', 'z', 'Z', 'z', 'Z', 'z', 's',
|
||||
0x80 => 'b', 'B', 'B', 'b', '6', '6', 'O', 'C', 'c', 'D', 'D', 'D', 'd', 'd', '3', '@',
|
||||
0x90 => 'E', 'F', 'f', 'G', 'G', 'hv', 'I', 'I', 'K', 'k', 'l', 'l', 'W', 'N', 'n', 'O',
|
||||
0xA0 => 'O', 'o', 'OI', 'oi', 'P', 'p', 'YR', '2', '2', 'SH', 'sh', 't', 'T', 't', 'T', 'U',
|
||||
0xB0 => 'u', 'Y', 'V', 'Y', 'y', 'Z', 'z', 'ZH', 'ZH', 'zh', 'zh', '2', '5', '5', 'ts', 'w',
|
||||
0xC0 => '|', '||', '|=', '!', 'DZ', 'Dz', 'dz', 'LJ', 'Lj', 'lj', 'NJ', 'Nj', 'nj', 'A', 'a', 'I',
|
||||
0xD0 => 'i', 'O', 'o', 'U', 'u', 'U', 'u', 'U', 'u', 'U', 'u', 'U', 'u', '@', 'A', 'a',
|
||||
0xE0 => 'A', 'a', 'AE', 'ae', 'G', 'g', 'G', 'g', 'K', 'k', 'O', 'o', 'O', 'o', 'ZH', 'zh',
|
||||
0xF0 => 'j', 'DZ', 'Dz', 'dz', 'G', 'g', 'HV', 'W', 'N', 'n', 'A', 'a', 'AE', 'ae', 'O', 'o',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x02.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x02.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'A', 'a', 'A', 'a', 'E', 'e', 'E', 'e', 'I', 'i', 'I', 'i', 'O', 'o', 'O', 'o',
|
||||
0x10 => 'R', 'r', 'R', 'r', 'U', 'u', 'U', 'u', 'S', 's', 'T', 't', 'Y', 'y', 'H', 'h',
|
||||
0x20 => 'N', 'd', 'OU', 'ou', 'Z', 'z', 'A', 'a', 'E', 'e', 'O', 'o', 'O', 'o', 'O', 'o',
|
||||
0x30 => 'O', 'o', 'Y', 'y', 'l', 'n', 't', 'j', 'db', 'qp', 'A', 'C', 'c', 'L', 'T', 's',
|
||||
0x40 => 'z', '?', '?', 'B', 'U', 'V', 'E', 'e', 'J', 'j', 'Q', 'q', 'R', 'r', 'Y', 'y',
|
||||
0x50 => 'a', 'a', 'a', 'b', 'o', 'c', 'd', 'd', 'e', '@', '@', 'e', 'e', 'e', 'e', 'j',
|
||||
0x60 => 'g', 'g', 'G', 'g', 'u', 'Y', 'h', 'h', 'i', 'i', 'I', 'l', 'l', 'l', 'lZ', 'W',
|
||||
0x70 => 'W', 'm', 'n', 'n', 'N', 'o', 'OE', 'O', 'F', 'R', 'R', 'R', 'r', 'r', 'r', 'R',
|
||||
0x80 => 'R', 'R', 's', 'S', 'j', 'S', 'S', 't', 't', 'u', 'U', 'v', '^', 'W', 'Y', 'Y',
|
||||
0x90 => 'z', 'z', 'Z', 'Z', '?', '?', '?', 'C', '@', 'B', 'E', 'G', 'H', 'j', 'k', 'L',
|
||||
0xA0 => 'q', '?', '?', 'dz', 'dZ', 'dz', 'ts', 'tS', 'tC', 'fN', 'ls', 'lz', 'WW', ']]', 'h', 'h',
|
||||
0xB0 => 'k', 'h', 'j', 'r', 'r', 'r', 'r', 'w', 'y', '\'', '"', '`', '\'', '`', '`', '\'',
|
||||
0xC0 => '?', '?', '<', '>', '^', 'V', '^', 'V', '\'', '-', '/', '\\', ',', '_', '\\', '/',
|
||||
0xD0 => ':', '.', '`', '\'', '^', 'V', '+', '-', 'V', '.', '@', ',', '~', '"', 'R', 'X',
|
||||
0xE0 => 'G', 'l', 's', 'x', '?', '', '', '', '', '', '', '', 'V', '=', '"', NULL,
|
||||
0xF0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x03.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x03.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0x10 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0x20 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0x30 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0x40 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL,
|
||||
0x50 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x60 => '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x70 => NULL, NULL, NULL, NULL, '\'', ',', NULL, NULL, NULL, NULL, 'i', NULL, NULL, NULL, '?', NULL,
|
||||
0x80 => NULL, NULL, NULL, NULL, '', '', 'A', ':', 'E', 'E', 'I', NULL, 'O', NULL, 'Y', 'O',
|
||||
0x90 => 'i', 'A', 'B', 'G', 'D', 'E', 'Z', 'E', 'TH', 'I', 'K', 'L', 'M', 'N', 'X', 'O',
|
||||
0xA0 => 'P', 'R', NULL, 'S', 'T', 'Y', 'PH', 'CH', 'PS', 'O', 'I', 'Y', 'a', 'e', 'e', 'i',
|
||||
0xB0 => 'y', 'a', 'b', 'g', 'd', 'e', 'z', 'e', 'th', 'i', 'k', 'l', 'm', 'n', 'x', 'o',
|
||||
0xC0 => 'p', 'r', 's', 's', 't', 'y', 'ph', 'ch', 'ps', 'o', 'i', 'y', 'o', 'y', 'o', NULL,
|
||||
0xD0 => 'b', 'th', 'Y', 'Y', 'Y', 'ph', 'p', '&', NULL, NULL, 'St', 'st', 'W', 'w', 'Q', 'q',
|
||||
0xE0 => 'Sp', 'sp', 'Sh', 'sh', 'F', 'f', 'Kh', 'kh', 'H', 'h', 'G', 'g', 'CH', 'ch', 'Ti', 'ti',
|
||||
0xF0 => 'k', 'r', 's', 'j', 'TH', 'e', NULL, 'S', 's', 'S', 'S', 's', NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x04.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x04.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'E', 'E', 'D', 'G', 'E', 'Z', 'I', 'I', 'J', 'L', 'N', 'C', 'K', 'I', 'U', 'D',
|
||||
0x10 => 'A', 'B', 'V', 'G', 'D', 'E', 'Z', 'Z', 'I', 'I', 'K', 'L', 'M', 'N', 'O', 'P',
|
||||
0x20 => 'R', 'S', 'T', 'U', 'F', 'H', 'C', 'C', 'S', 'S', '', 'Y', '', 'E', 'U', 'A',
|
||||
0x30 => 'a', 'b', 'v', 'g', 'd', 'e', 'z', 'z', 'i', 'i', 'k', 'l', 'm', 'n', 'o', 'p',
|
||||
0x40 => 'r', 's', 't', 'u', 'f', 'h', 'c', 'c', 's', 's', '', 'y', '', 'e', 'u', 'a',
|
||||
0x50 => 'e', 'e', 'd', 'g', 'e', 'z', 'i', 'i', 'j', 'l', 'n', 'c', 'k', 'i', 'u', 'd',
|
||||
0x60 => 'O', 'o', 'E', 'e', 'Ie', 'ie', 'E', 'e', 'Ie', 'ie', 'O', 'o', 'Io', 'io', 'Ks', 'ks',
|
||||
0x70 => 'Ps', 'ps', 'F', 'f', 'Y', 'y', 'Y', 'y', 'u', 'u', 'O', 'o', 'O', 'o', 'Ot', 'ot',
|
||||
0x80 => 'Q', 'q', '*1000*', '', '', '', '', NULL, '*100.000*', '*1.000.000*', NULL, NULL, '"', '"', 'R\'', 'r\'',
|
||||
0x90 => 'G', 'g', 'G', 'g', 'G', 'g', 'Zh\'', 'zh\'', 'Z', 'z', 'K\'', 'k\'', 'K\'', 'k\'', 'K\'', 'k\'',
|
||||
0xA0 => 'K\'', 'k\'', 'N\'', 'n\'', 'Ng', 'ng', 'P\'', 'p\'', 'Kh', 'kh', 'S\'', 's\'', 'T\'', 't\'', 'U', 'u',
|
||||
0xB0 => 'U\'', 'u\'', 'Kh\'', 'kh\'', 'Tts', 'tts', 'Ch\'', 'ch\'', 'Ch\'', 'ch\'', 'H', 'h', 'Ch', 'ch', 'Ch\'', 'ch\'',
|
||||
0xC0 => '`', 'Z', 'z', 'K\'', 'k\'', NULL, NULL, 'N\'', 'n\'', NULL, NULL, 'Ch', 'ch', NULL, NULL, NULL,
|
||||
0xD0 => 'A', 'a', 'A', 'a', 'AE', 'ae', 'E', 'e', '@', '@', '@', '@', 'Z', 'z', 'Z', 'z',
|
||||
0xE0 => 'Dz', 'dz', 'I', 'i', 'I', 'i', 'O', 'o', 'O', 'o', 'O', 'o', 'E', 'e', 'U', 'u',
|
||||
0xF0 => 'U', 'u', 'U', 'u', 'C', 'c', NULL, NULL, 'Y', 'y', NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x05.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x05.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x10 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x20 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x30 => NULL, 'A', 'B', 'G', 'D', 'E', 'Z', 'E', 'E', 'T`', 'Z', 'I', 'L', 'X', 'C', 'K',
|
||||
0x40 => 'H', 'J', 'G', 'C', 'M', 'Y', 'N', 'S', 'O', 'Ch`', 'P', 'J', 'R', 'S', 'V', 'T',
|
||||
0x50 => 'R', 'Ts`', 'W', 'P`', 'K`', 'O', 'F', NULL, NULL, '<', '\'', '/', '!', ',', '?', '.',
|
||||
0x60 => NULL, 'a', 'b', 'g', 'd', 'e', 'z', 'e', 'e', 't`', 'z', 'i', 'l', 'x', 'c', 'k',
|
||||
0x70 => 'h', 'j', 'g', 'c', 'm', 'y', 'n', 's', 'o', 'ch`', 'p', 'j', 'r', 's', 'v', 't',
|
||||
0x80 => 'r', 'ts`', 'w', 'p`', 'k`', 'o', 'f', 'ev', NULL, '.', '-', NULL, NULL, NULL, NULL, NULL,
|
||||
0x90 => NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0xA0 => '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0xB0 => '@', 'e', 'a', 'o', 'i', 'e', 'e', 'a', 'a', 'o', NULL, 'u', '\'', '', '', '',
|
||||
0xC0 => '', '', '', ':', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xD0 => '', 'b', 'g', 'd', 'h', 'w', 'z', 'h', 't', 'y', 'k', 'k', 'l', 'm', 'm', 'n',
|
||||
0xE0 => 'n', 's', '`', 'p', 'p', 'z', 'z', 'q', 'r', 's', 't', NULL, NULL, NULL, NULL, NULL,
|
||||
0xF0 => 'ww', 'wy', 'yy', '\'', '"', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x06.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x06.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, ',', NULL, NULL, NULL,
|
||||
0x10 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, ';', NULL, NULL, NULL, '?',
|
||||
0x20 => NULL, '', 'a', 'a', 'w', 'a', 'y', 'a', 'b', 't', 't', 'th', 'j', 'h', 'kh', 'd',
|
||||
0x30 => 'dh', 'r', 'z', 's', 'sh', 's', 'd', 't', 'z', '`', 'gh', NULL, NULL, NULL, NULL, NULL,
|
||||
0x40 => '', 'f', 'q', 'k', 'l', 'm', 'n', 'h', 'w', 'y', 'y', 'an', 'un', 'in', 'a', 'u',
|
||||
0x50 => 'i', 'W', '', '', '\'', '\'', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x60 => '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '%', ',', '.', '*', NULL, NULL,
|
||||
0x70 => '', '\'', '\'', '\'', '', '\'', '\'w', '\'u', '\'y', 'tt', 'tth', 'b', 't', 'T', 'p', 'th',
|
||||
0x80 => 'bh', '\'h', 'H', 'ny', 'dy', 'H', 'ch', 'cch', 'dd', 'D', 'D', 'Dt', 'dh', 'ddh', 'd', 'D',
|
||||
0x90 => 'D', 'rr', 'R', 'R', 'R', 'R', 'R', 'R', 'zh', 'R', 'S', 'S', 'S', 'S', 'S', 'T',
|
||||
0xA0 => 'GH', 'F', 'F', 'F', 'v', 'f', 'ph', 'Q', 'Q', 'k', 'k', 'K', 'K', 'ng', 'K', 'g',
|
||||
0xB0 => 'G', 'N', 'G', 'G', 'G', 'L', 'L', 'L', 'L', 'N', 'N', 'N', 'N', 'N', 'h', 'Ch',
|
||||
0xC0 => 'hy', 'h', 'H', '@', 'W', 'oe', 'oe', 'u', 'yu', 'yu', 'W', 'v', 'y', 'Y', 'Y', 'W',
|
||||
0xD0 => '', '', 'y', 'y\'', '.', 'ae', '', '', '', '', '', '', '', '@', '#', '',
|
||||
0xE0 => '', '', '', '', '', '', '', '', '', '^', '', '', '', '', NULL, NULL,
|
||||
0xF0 => '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'Sh', 'D', 'Gh', '&', '+m', NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x07.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x07.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => '//', '/', ',', '!', '!', '-', ',', ',', ';', '?', '~', '{', '}', '*', NULL, '',
|
||||
0x10 => '\'', '', 'b', 'g', 'g', 'd', 'dr', 'h', 'w', 'z', 'h', 't', 't', 'y', 'yh', 'k',
|
||||
0x20 => 'l', 'm', 'n', 's', 's', '`', 'p', 'p', 's', 'q', 'r', 'sh', 't', NULL, NULL, NULL,
|
||||
0x30 => 'a', 'a', 'a', 'A', 'A', 'A', 'e', 'e', 'e', 'E', 'i', 'i', 'u', 'u', 'u', 'o',
|
||||
0x40 => '', '`', '\'', '', '', 'X', 'Q', '@', '@', '|', '+', NULL, NULL, NULL, NULL, NULL,
|
||||
0x50 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x60 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x70 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x80 => 'h', 's', 'n', 'r', 'b', 'l', 'k', '\'', 'v', 'm', 'f', 'd', 't', 'l', 'g', 'n',
|
||||
0x90 => 's', 'd', 'z', 't', 'y', 'p', 'j', 'c', 'tt', 'h', 'kh', 'dh', 'z', 's', 's', 'd',
|
||||
0xA0 => 't', 'z', '`', 'g', 'q', 'w', 'a', 'aa', 'i', 'ee', 'u', 'oo', 'e', 'ey', 'o', 'oa',
|
||||
0xB0 => '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xC0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xD0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xE0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xF0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x09.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x09.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => NULL, 'N', 'N', 'h', NULL, 'a', 'a', 'i', 'i', 'u', 'u', 'r', 'l', 'e', 'e', 'e',
|
||||
0x10 => 'ai', 'o', 'o', 'o', 'au', 'ka', 'kha', 'ga', 'gha', 'na', 'ca', 'cha', 'ja', 'jha', 'na', 'ta',
|
||||
0x20 => 'tha', 'da', 'dha', 'na', 'ta', 'tha', 'da', 'dha', 'na', 'na', 'pa', 'pha', 'ba', 'bha', 'ma', 'ya',
|
||||
0x30 => 'ra', 'ra', 'la', 'la', 'la', 'va', 'sa', 'sa', 'sa', 'ha', NULL, NULL, '\'', '\'', 'a', 'i',
|
||||
0x40 => 'i', 'u', 'uu', 'R', 'RR', 'eN', 'e', 'e', 'ai', 'o', 'o', 'o', 'au', '', NULL, NULL,
|
||||
0x50 => '\'om', '\'', '\'', '`', '\'', NULL, NULL, NULL, 'ka', 'kha', 'ga', 'ja', 'da', 'dha', 'pha', 'ya',
|
||||
0x60 => 'r', 'l', 'L', 'LL', '.', '.', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
||||
0x70 => '.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x80 => NULL, 'N', 'm', 'h', NULL, 'a', 'a', 'i', 'i', 'u', 'u', 'r', 'l', NULL, NULL, 'e',
|
||||
0x90 => 'ai', NULL, NULL, 'o', 'au', 'ka', 'kha', 'ga', 'gha', 'na', 'ca', 'cha', 'ja', 'jha', 'na', 'ta',
|
||||
0xA0 => 'tha', 'da', 'dha', 'na', 'ta', 'tha', 'da', 'dha', 'na', NULL, 'pa', 'pha', 'ba', 'bha', 'ma', 'ya',
|
||||
0xB0 => 'ra', NULL, 'la', NULL, NULL, NULL, 'sa', 'sa', 'sa', 'ha', NULL, NULL, '\'', NULL, 'a', 'i',
|
||||
0xC0 => 'i', 'u', 'uu', 'R', 'RR', NULL, NULL, 'e', 'ai', NULL, NULL, 'o', 'au', '', 't', NULL,
|
||||
0xD0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, '+', NULL, NULL, NULL, NULL, 'da', 'dha', NULL, 'ya',
|
||||
0xE0 => 'r', 'l', 'L', 'LL', NULL, NULL, '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
||||
0xF0 => 'ra', 'ra', 'Rs', 'Rs', '1/', '2/', '3/', '4/', ' 1 - 1/', '/16', '', NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x0a.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x0a.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => NULL, NULL, 'N', NULL, NULL, 'a', 'a', 'i', 'i', 'u', 'u', NULL, NULL, NULL, NULL, 'e',
|
||||
0x10 => 'ai', NULL, NULL, 'o', 'au', 'ka', 'kha', 'ga', 'gha', 'na', 'ca', 'cha', 'ja', 'jha', 'na', 'ta',
|
||||
0x20 => 'tha', 'da', 'dha', 'na', 'ta', 'tha', 'da', 'dha', 'na', NULL, 'pa', 'pha', 'ba', 'bha', 'ma', 'ya',
|
||||
0x30 => 'ra', NULL, 'la', 'la', NULL, 'va', 'sa', NULL, 'sa', 'ha', NULL, NULL, '\'', NULL, 'a', 'i',
|
||||
0x40 => 'i', 'u', 'uu', NULL, NULL, NULL, NULL, 'ee', 'ai', NULL, NULL, 'oo', 'au', '', NULL, NULL,
|
||||
0x50 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'kha', 'ga', 'ja', 'ra', NULL, 'pha', NULL,
|
||||
0x60 => NULL, NULL, NULL, NULL, NULL, NULL, '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
||||
0x70 => 'N', 'H', '', '', 'G.E.O.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x80 => NULL, 'N', 'N', 'h', NULL, 'a', 'a', 'i', 'i', 'u', 'u', 'r', 'l', 'e', NULL, 'e',
|
||||
0x90 => 'ai', 'o', NULL, 'o', 'au', 'ka', 'kha', 'ga', 'gha', 'na', 'ca', 'cha', 'ja', 'jha', 'na', 'ta',
|
||||
0xA0 => 'tha', 'da', 'dha', 'na', 'ta', 'tha', 'da', 'dha', 'na', NULL, 'pa', 'pha', 'ba', 'bha', 'ma', 'ya',
|
||||
0xB0 => 'ra', NULL, 'la', 'la', NULL, 'va', 'sa', 'sa', 'sa', 'ha', NULL, NULL, '\'', '\'', 'a', 'i',
|
||||
0xC0 => 'i', 'u', 'uu', 'R', 'RR', 'eN', NULL, 'e', 'ai', 'o', NULL, 'o', 'au', '', NULL, NULL,
|
||||
0xD0 => '\'om', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xE0 => 'r', 'l', NULL, NULL, NULL, NULL, '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
||||
0xF0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x0b.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x0b.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => NULL, 'N', 'm', 'h', NULL, 'a', 'a', 'i', 'i', 'u', 'u', 'r', 'l', NULL, NULL, 'e',
|
||||
0x10 => 'ai', NULL, NULL, 'o', 'au', 'ka', 'kha', 'ga', 'gha', 'na', 'ca', 'cha', 'ja', 'jha', 'na', 'ta',
|
||||
0x20 => 'tha', 'da', 'dha', 'na', 'ta', 'tha', 'da', 'dha', 'na', NULL, 'pa', 'pha', 'ba', 'bha', 'ma', 'ya',
|
||||
0x30 => 'ra', NULL, 'la', 'la', NULL, 'va', 'sa', 'sa', 'sa', 'ha', NULL, NULL, '\'', '\'', 'a', 'i',
|
||||
0x40 => 'i', 'u', 'uu', 'R', NULL, NULL, NULL, 'e', 'e', NULL, NULL, 'o', 'au', '', NULL, NULL,
|
||||
0x50 => NULL, NULL, NULL, NULL, NULL, NULL, '+', '+', NULL, NULL, NULL, NULL, 'da', 'dha', NULL, 'ya',
|
||||
0x60 => 'r', 'l', NULL, NULL, NULL, NULL, '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
||||
0x70 => '', 'wa', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x80 => NULL, NULL, 'N', 'h', NULL, 'a', 'a', 'i', 'i', 'u', 'u', NULL, NULL, NULL, 'e', 'e',
|
||||
0x90 => 'ai', NULL, 'o', 'o', 'au', 'ka', NULL, NULL, NULL, 'na', 'ca', NULL, 'ja', NULL, 'na', 'ta',
|
||||
0xA0 => NULL, NULL, NULL, 'na', 'ta', NULL, NULL, NULL, 'na', 'na', 'pa', NULL, NULL, NULL, 'ma', 'ya',
|
||||
0xB0 => 'ra', 'ra', 'la', 'la', 'la', 'va', 'sa', 'sa', 'sa', 'ha', NULL, NULL, NULL, NULL, 'a', 'i',
|
||||
0xC0 => 'ii', 'u', 'u', NULL, NULL, NULL, 'e', 'e', 'ai', NULL, 'o', 'o', 'au', '', NULL, NULL,
|
||||
0xD0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, '+', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xE0 => NULL, NULL, NULL, NULL, NULL, NULL, '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
||||
0xF0 => '10', '100', '1000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x0c.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x0c.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => NULL, 'm', 'm', 'h', NULL, 'a', 'a', 'i', 'i', 'u', 'u', 'r', 'l', NULL, 'e', 'e',
|
||||
0x10 => 'ai', NULL, 'o', 'o', 'au', 'ka', 'kha', 'ga', 'gha', 'na', 'ca', 'cha', 'ja', 'jha', 'na', 'ta',
|
||||
0x20 => 'tha', 'da', 'dha', 'na', 'ta', 'tha', 'da', 'dha', 'na', NULL, 'pa', 'pha', 'ba', 'bha', 'ma', 'ya',
|
||||
0x30 => 'ra', 'ra', 'la', 'la', NULL, 'va', 'sa', 'sa', 'sa', 'ha', NULL, NULL, NULL, NULL, 'aa', 'i',
|
||||
0x40 => 'ii', 'u', 'u', 'r', 'l', NULL, 'e', 'ee', 'ai', NULL, 'o', 'oo', 'au', '', NULL, NULL,
|
||||
0x50 => NULL, NULL, NULL, NULL, NULL, '+', '+', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x60 => 'r', 'l', NULL, NULL, NULL, NULL, '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
||||
0x70 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x80 => NULL, NULL, 'm', 'h', NULL, 'a', 'a', 'i', 'i', 'u', 'u', 'r', 'l', NULL, 'e', 'e',
|
||||
0x90 => 'ai', NULL, 'o', 'o', 'au', 'ka', 'kha', 'ga', 'gha', 'na', 'ca', 'cha', 'ja', 'jha', 'na', 'ta',
|
||||
0xA0 => 'tha', 'da', 'dha', 'na', 'ta', 'tha', 'da', 'dha', 'na', NULL, 'pa', 'pha', 'ba', 'bha', 'ma', 'ya',
|
||||
0xB0 => 'ra', 'ra', 'la', 'la', NULL, 'va', 'sa', 'sa', 'sa', 'ha', NULL, NULL, NULL, NULL, 'a', 'i',
|
||||
0xC0 => 'ii', 'u', 'u', 'r', 'l', NULL, 'e', 'ee', 'ai', NULL, 'u', 'u', 'au', '', NULL, NULL,
|
||||
0xD0 => NULL, NULL, NULL, NULL, NULL, '+', '+', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'la', NULL,
|
||||
0xE0 => 'r', 'l', NULL, NULL, NULL, NULL, '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
||||
0xF0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x0d.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x0d.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => NULL, NULL, 'm', 'h', NULL, 'a', 'a', 'i', 'i', 'u', 'u', 'r', 'l', NULL, 'e', 'e',
|
||||
0x10 => 'ai', NULL, 'o', 'o', 'au', 'ka', 'kha', 'ga', 'gha', 'na', 'ca', 'cha', 'ja', 'jha', 'na', 'ta',
|
||||
0x20 => 'tha', 'da', 'dha', 'na', 'ta', 'tha', 'da', 'dha', 'na', NULL, 'pa', 'pha', 'ba', 'bha', 'ma', 'ya',
|
||||
0x30 => 'ra', 'ra', 'la', 'la', 'la', 'va', 'sa', 'sa', 'sa', 'ha', NULL, NULL, NULL, NULL, 'a', 'i',
|
||||
0x40 => 'i', 'u', 'uu', 'R', NULL, NULL, 'e', 'e', 'ai', '', 'ea', 'ea', 'e', '', NULL, NULL,
|
||||
0x50 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, '+', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x60 => 'r', 'l', NULL, NULL, NULL, NULL, '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
||||
0x70 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x80 => NULL, NULL, 'N', 'H', NULL, 'a', 'aa', 'ae', 'aae', 'i', 'ii', 'u', 'uu', 'R', 'RR', 'L',
|
||||
0x90 => 'LL', 'e', 'ee', 'ai', 'o', 'oo', 'au', NULL, NULL, NULL, 'k', 'kh', 'g', 'gh', 'ng', 'nng',
|
||||
0xA0 => 'c', 'ch', 'j', 'jh', 'ny', 'jny', 'nyj', 'tt', 'tth', 'dd', 'ddh', 'nn', 'nndd', 't', 'th', 'd',
|
||||
0xB0 => 'dh', 'n', NULL, 'nd', 'p', 'ph', 'b', 'bh', 'm', 'mb', 'y', 'r', NULL, 'l', NULL, NULL,
|
||||
0xC0 => 'v', 'sh', 'ss', 's', 'h', 'll', 'f', NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 'aa',
|
||||
0xD0 => 'ae', 'aae', 'i', 'ii', 'u', NULL, 'uu', NULL, 'R', 'e', 'ee', 'ai', 'o', 'oo', 'au', 'L',
|
||||
0xE0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xF0 => NULL, NULL, 'RR', 'LL', ' . ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x0e.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x0e.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => NULL, 'k', 'kh', 'kh', 'kh', 'kh', 'kh', 'ng', 'c', 'ch', 'ch', 's', 'ch', 'y', 'd', 't',
|
||||
0x10 => 'th', 'th', 'th', 'n', 'd', 't', 'th', 'th', 'th', 'n', 'b', 'p', 'ph', 'f', 'ph', 'f',
|
||||
0x20 => 'ph', 'm', 'y', 'r', 'v', 'l', 'l', 'w', 's', 's', 's', 'h', 'l', 'x', 'h', '~',
|
||||
0x30 => 'a', 'a', 'a', 'a', 'i', 'ii', 'ue', 'uue', 'u', 'uu', '\'', NULL, NULL, NULL, NULL, 'Bh.',
|
||||
0x40 => 'e', 'ae', 'o', 'i', 'i', 'i', '<<', '', '', '', '', '', '', 'M', '', ' * ',
|
||||
0x50 => '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '||', '>>', NULL, NULL, NULL, NULL,
|
||||
0x60 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x70 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x80 => NULL, 'k', 'kh', NULL, 'kh', NULL, NULL, 'ng', 'ch', NULL, 's', NULL, NULL, 'ny', NULL, NULL,
|
||||
0x90 => NULL, NULL, NULL, NULL, 'd', 'h', 'th', 'th', NULL, 'n', 'b', 'p', 'ph', 'f', 'ph', 'f',
|
||||
0xA0 => NULL, 'm', 'y', 'r', NULL, 'l', NULL, 'w', NULL, NULL, 's', 'h', NULL, '`', '', '~',
|
||||
0xB0 => 'a', '', 'aa', 'am', 'i', 'ii', 'y', 'yy', 'u', 'uu', NULL, 'o', 'l', 'ny', NULL, NULL,
|
||||
0xC0 => 'e', 'ei', 'o', 'ay', 'ai', NULL, '+', NULL, '', '', '', '', '', 'M', NULL, NULL,
|
||||
0xD0 => '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', NULL, NULL, 'hn', 'hm', NULL, NULL,
|
||||
0xE0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xF0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x0f.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x0f.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'AUM', '', '', '', '', '', '', '', ' // ', ' * ', '', '-', ' / ', ' / ', ' // ', ' -/ ',
|
||||
0x10 => ' +/ ', ' X/ ', ' /XX/ ', ' /X/ ', ',', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0x20 => '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '.5', '1.5', '2.5', '3.5', '4.5', '5.5',
|
||||
0x30 => '6.5', '7.5', '8.5', '-.5', '+', '*', '^', '_', '', '~', NULL, ']', '[[', ']]', '', '',
|
||||
0x40 => 'k', 'kh', 'g', 'gh', 'ng', 'c', 'ch', 'j', NULL, 'ny', 'tt', 'tth', 'dd', 'ddh', 'nn', 't',
|
||||
0x50 => 'th', 'd', 'dh', 'n', 'p', 'ph', 'b', 'bh', 'm', 'ts', 'tsh', 'dz', 'dzh', 'w', 'zh', 'z',
|
||||
0x60 => '\'', 'y', 'r', 'l', 'sh', 'ssh', 's', 'h', 'a', 'kss', 'r', NULL, NULL, NULL, NULL, NULL,
|
||||
0x70 => NULL, 'aa', 'i', 'ii', 'u', 'uu', 'R', 'RR', 'L', 'LL', 'e', 'ee', 'o', 'oo', 'M', 'H',
|
||||
0x80 => 'i', 'ii', '', '', '', '', '', '', '', '', '', '', NULL, NULL, NULL, NULL,
|
||||
0x90 => 'k', 'kh', 'g', 'gh', 'ng', 'c', 'ch', 'j', NULL, 'ny', 'tt', 'tth', 'dd', 'ddh', 'nn', 't',
|
||||
0xA0 => 'th', 'd', 'dh', 'n', 'p', 'ph', 'b', 'bh', 'm', 'ts', 'tsh', 'dz', 'dzh', 'w', 'zh', 'z',
|
||||
0xB0 => '\'', 'y', 'r', 'l', 'sh', 'ss', 's', 'h', 'a', 'kss', 'w', 'y', 'r', NULL, 'X', ' :X: ',
|
||||
0xC0 => ' /O/ ', ' /o/ ', ' \\o\\ ', ' (O) ', '', '', '', '', '', '', '', '', '', NULL, NULL, '',
|
||||
0xD0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xE0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xF0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x10.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x10.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'k', 'kh', 'g', 'gh', 'ng', 'c', 'ch', 'j', 'jh', 'ny', 'nny', 'tt', 'tth', 'dd', 'ddh', 'nn',
|
||||
0x10 => 'tt', 'th', 'd', 'dh', 'n', 'p', 'ph', 'b', 'bh', 'm', 'y', 'r', 'l', 'w', 's', 'h',
|
||||
0x20 => 'll', 'a', NULL, 'i', 'ii', 'u', 'uu', 'e', NULL, 'o', 'au', NULL, 'aa', 'i', 'ii', 'u',
|
||||
0x30 => 'uu', 'e', 'ai', NULL, NULL, NULL, 'N', '\'', ':', '', NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x40 => '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', ' / ', ' // ', 'n*', 'r*', 'l*', 'e*',
|
||||
0x50 => 'sh', 'ss', 'R', 'RR', 'L', 'LL', 'R', 'RR', 'L', 'LL', NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x60 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x70 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x80 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x90 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xA0 => 'A', 'B', 'G', 'D', 'E', 'V', 'Z', 'T`', 'I', 'K', 'L', 'M', 'N', 'O', 'P', 'Zh',
|
||||
0xB0 => 'R', 'S', 'T', 'U', 'P`', 'K`', 'G\'', 'Q', 'Sh', 'Ch`', 'C`', 'Z\'', 'C', 'Ch', 'X', 'J',
|
||||
0xC0 => 'H', 'E', 'Y', 'W', 'Xh', 'OE', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xD0 => 'a', 'b', 'g', 'd', 'e', 'v', 'z', 't', 'i', 'k', 'l', 'm', 'n', 'o', 'p', 'zh',
|
||||
0xE0 => 'r', 's', 't', 'u', 'p', 'k', 'gh', 'q', 'sh', 'ch', 'ts', 'dz', 'c', 'ch', 'kh', 'j',
|
||||
0xF0 => 'h', 'e', 'y', 'ui', 'q', 'oe', 'f', NULL, NULL, NULL, NULL, ' // ', NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x11.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x11.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'g', 'kk', 'n', 'd', 'tt', 'l', 'm', 'b', 'pp', 's', 'ss', '', 'j', 'jj', 'ch', 'k',
|
||||
0x10 => 't', 'p', 'h', 'ng', 'nn', 'nd', 'nb', 'dg', 'rn', 'rr', 'rh', 'rN', 'mb', 'mN', 'bg', 'bn',
|
||||
0x20 => '', 'bs', 'bsg', 'bst', 'bsb', 'bss', 'bsj', 'bj', 'bc', 'bt', 'bp', 'bN', 'bbN', 'sg', 'sn', 'sd',
|
||||
0x30 => 'sr', 'sm', 'sb', 'sbg', 'sss', 's', 'sj', 'sc', 'sk', 'st', 'sp', 'sh', '', '', '', '',
|
||||
0x40 => 'Z', 'g', 'd', 'm', 'b', 's', 'Z', '', 'j', 'c', 't', 'p', 'N', 'j', '', '',
|
||||
0x50 => '', '', 'ck', 'ch', '', '', 'pb', 'pN', 'hh', 'Q', NULL, NULL, NULL, NULL, NULL, '',
|
||||
0x60 => '', 'a', 'ae', 'ya', 'yae', 'eo', 'e', 'yeo', 'ye', 'o', 'wa', 'wae', 'oe', 'yo', 'u', 'wo',
|
||||
0x70 => 'we', 'wi', 'yu', 'eu', 'ui', 'i', 'a-o', 'a-u', 'ya-o', 'ya-yo', 'eo-o', 'eo-u', 'eo-eu', 'yeo-o', 'yeo-u', 'o-eo',
|
||||
0x80 => 'o-e', 'o-ye', 'o-o', 'o-u', 'yo-ya', 'yo-yae', 'yo-yeo', 'yo-o', 'yo-i', 'u-a', 'u-ae', 'u-eo-eu', 'u-ye', 'u-u', 'yu-a', 'yu-eo',
|
||||
0x90 => 'yu-e', 'yu-yeo', 'yu-ye', 'yu-u', 'yu-i', 'eu-u', 'eu-eu', 'yi-u', 'i-a', 'i-ya', 'i-o', 'i-u', 'i-eu', 'i-U', 'U', 'U-eo',
|
||||
0xA0 => 'U-u', 'U-i', 'UU', NULL, NULL, NULL, NULL, NULL, 'g', 'kk', 'gs', 'n', 'nj', 'nh', 'd', 'l',
|
||||
0xB0 => 'lg', 'lm', 'lb', 'ls', 'lt', 'lp', 'lh', 'm', 'b', 'bs', 's', 'ss', 'ng', 'j', 'ch', 'k',
|
||||
0xC0 => 't', 'p', 'h', 'gl', 'gsg', 'ng', 'nd', 'ns', 'nZ', 'nt', 'dg', 'tl', 'lgs', 'ln', 'ld', 'lth',
|
||||
0xD0 => 'll', 'lmg', 'lms', 'lbs', 'lbh', 'rNp', 'lss', 'lZ', 'lk', 'lQ', 'mg', 'ml', 'mb', 'ms', 'mss', 'mZ',
|
||||
0xE0 => 'mc', 'mh', 'mN', 'bl', 'bp', 'ph', 'pN', 'sg', 'sd', 'sl', 'sb', 'Z', 'g', 'ss', '', 'kh',
|
||||
0xF0 => 'N', 'Ns', 'NZ', 'pb', 'pN', 'hn', 'hl', 'hm', 'hb', 'Q', NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x12.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x12.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'ha', 'hu', 'hi', 'haa', 'hee', 'he', 'ho', NULL, 'la', 'lu', 'li', 'laa', 'lee', 'le', 'lo', 'lwa',
|
||||
0x10 => 'hha', 'hhu', 'hhi', 'hhaa', 'hhee', 'hhe', 'hho', 'hhwa', 'ma', 'mu', 'mi', 'maa', 'mee', 'me', 'mo', 'mwa',
|
||||
0x20 => 'sza', 'szu', 'szi', 'szaa', 'szee', 'sze', 'szo', 'szwa', 'ra', 'ru', 'ri', 'raa', 'ree', 're', 'ro', 'rwa',
|
||||
0x30 => 'sa', 'su', 'si', 'saa', 'see', 'se', 'so', 'swa', 'sha', 'shu', 'shi', 'shaa', 'shee', 'she', 'sho', 'shwa',
|
||||
0x40 => 'qa', 'qu', 'qi', 'qaa', 'qee', 'qe', 'qo', NULL, 'qwa', NULL, 'qwi', 'qwaa', 'qwee', 'qwe', NULL, NULL,
|
||||
0x50 => 'qha', 'qhu', 'qhi', 'qhaa', 'qhee', 'qhe', 'qho', NULL, 'qhwa', NULL, 'qhwi', 'qhwaa', 'qhwee', 'qhwe', NULL, NULL,
|
||||
0x60 => 'ba', 'bu', 'bi', 'baa', 'bee', 'be', 'bo', 'bwa', 'va', 'vu', 'vi', 'vaa', 'vee', 've', 'vo', 'vwa',
|
||||
0x70 => 'ta', 'tu', 'ti', 'taa', 'tee', 'te', 'to', 'twa', 'ca', 'cu', 'ci', 'caa', 'cee', 'ce', 'co', 'cwa',
|
||||
0x80 => 'xa', 'xu', 'xi', 'xaa', 'xee', 'xe', 'xo', NULL, 'xwa', NULL, 'xwi', 'xwaa', 'xwee', 'xwe', NULL, NULL,
|
||||
0x90 => 'na', 'nu', 'ni', 'naa', 'nee', 'ne', 'no', 'nwa', 'nya', 'nyu', 'nyi', 'nyaa', 'nyee', 'nye', 'nyo', 'nywa',
|
||||
0xA0 => '\'a', '\'u', NULL, '\'aa', '\'ee', '\'e', '\'o', '\'wa', 'ka', 'ku', 'ki', 'kaa', 'kee', 'ke', 'ko', NULL,
|
||||
0xB0 => 'kwa', NULL, 'kwi', 'kwaa', 'kwee', 'kwe', NULL, NULL, 'kxa', 'kxu', 'kxi', 'kxaa', 'kxee', 'kxe', 'kxo', NULL,
|
||||
0xC0 => 'kxwa', NULL, 'kxwi', 'kxwaa', 'kxwee', 'kxwe', NULL, NULL, 'wa', 'wu', 'wi', 'waa', 'wee', 'we', 'wo', NULL,
|
||||
0xD0 => '`a', '`u', '`i', '`aa', '`ee', '`e', '`o', NULL, 'za', 'zu', 'zi', 'zaa', 'zee', 'ze', 'zo', 'zwa',
|
||||
0xE0 => 'zha', 'zhu', 'zhi', 'zhaa', 'zhee', 'zhe', 'zho', 'zhwa', 'ya', 'yu', 'yi', 'yaa', 'yee', 'ye', 'yo', NULL,
|
||||
0xF0 => 'da', 'du', 'di', 'daa', 'dee', 'de', 'do', 'dwa', 'dda', 'ddu', 'ddi', 'ddaa', 'ddee', 'dde', 'ddo', 'ddwa',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x13.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x13.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'ja', 'ju', 'ji', 'jaa', 'jee', 'je', 'jo', 'jwa', 'ga', 'gu', 'gi', 'gaa', 'gee', 'ge', 'go', NULL,
|
||||
0x10 => 'gwa', NULL, 'gwi', 'gwaa', 'gwee', 'gwe', NULL, NULL, 'gga', 'ggu', 'ggi', 'ggaa', 'ggee', 'gge', 'ggo', NULL,
|
||||
0x20 => 'tha', 'thu', 'thi', 'thaa', 'thee', 'the', 'tho', 'thwa', 'cha', 'chu', 'chi', 'chaa', 'chee', 'che', 'cho', 'chwa',
|
||||
0x30 => 'pha', 'phu', 'phi', 'phaa', 'phee', 'phe', 'pho', 'phwa', 'tsa', 'tsu', 'tsi', 'tsaa', 'tsee', 'tse', 'tso', 'tswa',
|
||||
0x40 => 'tza', 'tzu', 'tzi', 'tzaa', 'tzee', 'tze', 'tzo', NULL, 'fa', 'fu', 'fi', 'faa', 'fee', 'fe', 'fo', 'fwa',
|
||||
0x50 => 'pa', 'pu', 'pi', 'paa', 'pee', 'pe', 'po', 'pwa', 'rya', 'mya', 'fya', NULL, NULL, NULL, NULL, NULL,
|
||||
0x60 => NULL, ' ', '.', ',', ';', ':', ':: ', '?', '//', '1', '2', '3', '4', '5', '6', '7',
|
||||
0x70 => '8', '9', '10+', '20+', '30+', '40+', '50+', '60+', '70+', '80+', '90+', '100+', '10,000+', NULL, NULL, NULL,
|
||||
0x80 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x90 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xA0 => 'a', 'e', 'i', 'o', 'u', 'v', 'ga', 'ka', 'ge', 'gi', 'go', 'gu', 'gv', 'ha', 'he', 'hi',
|
||||
0xB0 => 'ho', 'hu', 'hv', 'la', 'le', 'li', 'lo', 'lu', 'lv', 'ma', 'me', 'mi', 'mo', 'mu', 'na', 'hna',
|
||||
0xC0 => 'nah', 'ne', 'ni', 'no', 'nu', 'nv', 'qua', 'que', 'qui', 'quo', 'quu', 'quv', 'sa', 's', 'se', 'si',
|
||||
0xD0 => 'so', 'su', 'sv', 'da', 'ta', 'de', 'te', 'di', 'ti', 'do', 'du', 'dv', 'dla', 'tla', 'tle', 'tli',
|
||||
0xE0 => 'tlo', 'tlu', 'tlv', 'tsa', 'tse', 'tsi', 'tso', 'tsu', 'tsv', 'wa', 'we', 'wi', 'wo', 'wu', 'wv', 'ya',
|
||||
0xF0 => 'ye', 'yi', 'yo', 'yu', 'yv', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x14.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x14.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => NULL, 'ai', 'aai', 'i', 'ii', 'u', 'uu', 'oo', 'ee', 'i', 'a', 'aa', 'we', 'we', 'wi', 'wi',
|
||||
0x10 => 'wii', 'wii', 'wo', 'wo', 'woo', 'woo', 'woo', 'wa', 'wa', 'waa', 'waa', 'waa', 'ai', 'w', '\'', 't',
|
||||
0x20 => 'k', 'sh', 's', 'n', 'w', 'n', NULL, 'w', 'c', '?', 'l', 'en', 'in', 'on', 'an', 'pai',
|
||||
0x30 => 'paai', 'pi', 'pii', 'pu', 'puu', 'poo', 'hee', 'hi', 'pa', 'paa', 'pwe', 'pwe', 'pwi', 'pwi', 'pwii', 'pwii',
|
||||
0x40 => 'pwo', 'pwo', 'pwoo', 'pwoo', 'pwa', 'pwa', 'pwaa', 'pwaa', 'pwaa', 'p', 'p', 'h', 'tai', 'taai', 'ti', 'tii',
|
||||
0x50 => 'tu', 'tuu', 'too', 'dee', 'di', 'ta', 'taa', 'twe', 'twe', 'twi', 'twi', 'twii', 'twii', 'two', 'two', 'twoo',
|
||||
0x60 => 'twoo', 'twa', 'twa', 'twaa', 'twaa', 'twaa', 't', 'tte', 'tti', 'tto', 'tta', 'kai', 'kaai', 'ki', 'kii', 'ku',
|
||||
0x70 => 'kuu', 'koo', 'ka', 'kaa', 'kwe', 'kwe', 'kwi', 'kwi', 'kwii', 'kwii', 'kwo', 'kwo', 'kwoo', 'kwoo', 'kwa', 'kwa',
|
||||
0x80 => 'kwaa', 'kwaa', 'kwaa', 'k', 'kw', 'keh', 'kih', 'koh', 'kah', 'gai', 'caai', 'gi', 'gii', 'gu', 'guu', 'coo',
|
||||
0x90 => 'ga', 'gaa', 'cwe', 'cwe', 'cwi', 'cwi', 'cwii', 'cwii', 'cwo', 'cwo', 'cwoo', 'cwoo', 'cwa', 'cwa', 'cwaa', 'cwaa',
|
||||
0xA0 => 'cwaa', 'g', 'th', 'mai', 'maai', 'mi', 'mii', 'mu', 'muu', 'moo', 'ma', 'maa', 'mwe', 'mwe', 'mwi', 'mwi',
|
||||
0xB0 => 'mwii', 'mwii', 'mwo', 'mwo', 'mwoo', 'mwoo', 'mwa', 'mwa', 'mwaa', 'mwaa', 'mwaa', 'm', 'm', 'mh', 'm', 'm',
|
||||
0xC0 => 'nai', 'naai', 'ni', 'nii', 'nu', 'nuu', 'noo', 'na', 'naa', 'nwe', 'nwe', 'nwa', 'nwa', 'nwaa', 'nwaa', 'nwaa',
|
||||
0xD0 => 'n', 'ng', 'nh', 'lai', 'laai', 'li', 'lii', 'lu', 'luu', 'loo', 'la', 'laa', 'lwe', 'lwe', 'lwi', 'lwi',
|
||||
0xE0 => 'lwii', 'lwii', 'lwo', 'lwo', 'lwoo', 'lwoo', 'lwa', 'lwa', 'lwaa', 'lwaa', 'l', 'l', 'l', 'sai', 'saai', 'si',
|
||||
0xF0 => 'sii', 'su', 'suu', 'soo', 'sa', 'saa', 'swe', 'swe', 'swi', 'swi', 'swii', 'swii', 'swo', 'swo', 'swoo', 'swoo',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x15.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x15.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'swa', 'swa', 'swaa', 'swaa', 'swaa', 's', 's', 'sw', 's', 'sk', 'skw', 'sW', 'spwa', 'stwa', 'skwa', 'scwa',
|
||||
0x10 => 'she', 'shi', 'shii', 'sho', 'shoo', 'sha', 'shaa', 'shwe', 'shwe', 'shwi', 'shwi', 'shwii', 'shwii', 'shwo', 'shwo', 'shwoo',
|
||||
0x20 => 'shwoo', 'shwa', 'shwa', 'shwaa', 'shwaa', 'sh', 'jai', 'yaai', 'ji', 'jii', 'ju', 'juu', 'yoo', 'ja', 'jaa', 'ywe',
|
||||
0x30 => 'ywe', 'ywi', 'ywi', 'ywii', 'ywii', 'ywo', 'ywo', 'ywoo', 'ywoo', 'ywa', 'ywa', 'ywaa', 'ywaa', 'ywaa', 'j', 'y',
|
||||
0x40 => 'y', 'yi', 're', 'rai', 'le', 'raai', 'ri', 'rii', 'ru', 'ruu', 'lo', 'ra', 'raa', 'la', 'rwaa', 'rwaa',
|
||||
0x50 => 'r', 'r', 'r', 'vai', 'faai', 'vi', 'vii', 'vu', 'vuu', 'va', 'vaa', 'fwaa', 'fwaa', 'v', 'the', 'the',
|
||||
0x60 => 'thi', 'thi', 'thii', 'thii', 'tho', 'thoo', 'tha', 'thaa', 'thwaa', 'thwaa', 'th', 'tthe', 'tthi', 'ttho', 'ttha', 'tth',
|
||||
0x70 => 'tye', 'tyi', 'tyo', 'tya', 'he', 'hi', 'hii', 'ho', 'hoo', 'ha', 'haa', 'h', 'h', 'hk', 'qaai', 'qi',
|
||||
0x80 => 'qii', 'qu', 'quu', 'qa', 'qaa', 'q', 'tlhe', 'tlhi', 'tlho', 'tlha', 're', 'ri', 'ro', 'ra', 'ngaai', 'ngi',
|
||||
0x90 => 'ngii', 'ngu', 'nguu', 'nga', 'ngaa', 'ng', 'nng', 'she', 'shi', 'sho', 'sha', 'the', 'thi', 'tho', 'tha', 'th',
|
||||
0xA0 => 'lhi', 'lhii', 'lho', 'lhoo', 'lha', 'lhaa', 'lh', 'the', 'thi', 'thii', 'tho', 'thoo', 'tha', 'thaa', 'th', 'b',
|
||||
0xB0 => 'e', 'i', 'o', 'a', 'we', 'wi', 'wo', 'wa', 'ne', 'ni', 'no', 'na', 'ke', 'ki', 'ko', 'ka',
|
||||
0xC0 => 'he', 'hi', 'ho', 'ha', 'ghu', 'gho', 'ghe', 'ghee', 'ghi', 'gha', 'ru', 'ro', 're', 'ree', 'ri', 'ra',
|
||||
0xD0 => 'wu', 'wo', 'we', 'wee', 'wi', 'wa', 'hwu', 'hwo', 'hwe', 'hwee', 'hwi', 'hwa', 'thu', 'tho', 'the', 'thee',
|
||||
0xE0 => 'thi', 'tha', 'ttu', 'tto', 'tte', 'ttee', 'tti', 'tta', 'pu', 'po', 'pe', 'pee', 'pi', 'pa', 'p', 'gu',
|
||||
0xF0 => 'go', 'ge', 'gee', 'gi', 'ga', 'khu', 'kho', 'khe', 'khee', 'khi', 'kha', 'kku', 'kko', 'kke', 'kkee', 'kki',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x16.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x16.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'kka', 'kk', 'nu', 'no', 'ne', 'nee', 'ni', 'na', 'mu', 'mo', 'me', 'mee', 'mi', 'ma', 'yu', 'yo',
|
||||
0x10 => 'ye', 'yee', 'yi', 'ya', 'ju', 'ju', 'jo', 'je', 'jee', 'ji', 'ji', 'ja', 'jju', 'jjo', 'jje', 'jjee',
|
||||
0x20 => 'jji', 'jja', 'lu', 'lo', 'le', 'lee', 'li', 'la', 'dlu', 'dlo', 'dle', 'dlee', 'dli', 'dla', 'lhu', 'lho',
|
||||
0x30 => 'lhe', 'lhee', 'lhi', 'lha', 'tlhu', 'tlho', 'tlhe', 'tlhee', 'tlhi', 'tlha', 'tlu', 'tlo', 'tle', 'tlee', 'tli', 'tla',
|
||||
0x40 => 'zu', 'zo', 'ze', 'zee', 'zi', 'za', 'z', 'z', 'dzu', 'dzo', 'dze', 'dzee', 'dzi', 'dza', 'su', 'so',
|
||||
0x50 => 'se', 'see', 'si', 'sa', 'shu', 'sho', 'she', 'shee', 'shi', 'sha', 'sh', 'tsu', 'tso', 'tse', 'tsee', 'tsi',
|
||||
0x60 => 'tsa', 'chu', 'cho', 'che', 'chee', 'chi', 'cha', 'ttsu', 'ttso', 'ttse', 'ttsee', 'ttsi', 'ttsa', 'X', '.', 'qai',
|
||||
0x70 => 'ngai', 'nngi', 'nngii', 'nngo', 'nngoo', 'nnga', 'nngaa', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x80 => ' ', 'b', 'l', 'f', 's', 'n', 'h', 'd', 't', 'c', 'q', 'm', 'g', 'ng', 'z', 'r',
|
||||
0x90 => 'a', 'o', 'u', 'e', 'i', 'ch', 'th', 'ph', 'p', 'x', 'p', '<', '>', NULL, NULL, NULL,
|
||||
0xA0 => 'f', 'v', 'u', 'yr', 'y', 'w', 'th', 'th', 'a', 'o', 'ac', 'ae', 'o', 'o', 'o', 'oe',
|
||||
0xB0 => 'on', 'r', 'k', 'c', 'k', 'g', 'ng', 'g', 'g', 'w', 'h', 'h', 'h', 'h', 'n', 'n',
|
||||
0xC0 => 'n', 'i', 'e', 'j', 'g', 'ae', 'a', 'eo', 'p', 'z', 's', 's', 's', 'c', 'z', 't',
|
||||
0xD0 => 't', 'd', 'b', 'b', 'p', 'p', 'e', 'm', 'm', 'm', 'l', 'l', 'ng', 'ng', 'd', 'o',
|
||||
0xE0 => 'ear', 'ior', 'qu', 'qu', 'qu', 's', 'yr', 'yr', 'yr', 'q', 'x', '.', ':', '+', '17', '18',
|
||||
0xF0 => '19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x17.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x17.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x10 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x20 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x30 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x40 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x50 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x60 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x70 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x80 => 'k', 'kh', 'g', 'gh', 'ng', 'c', 'ch', 'j', 'jh', 'ny', 't', 'tth', 'd', 'ddh', 'nn', 't',
|
||||
0x90 => 'th', 'd', 'dh', 'n', 'p', 'ph', 'b', 'bh', 'm', 'y', 'r', 'l', 'v', 'sh', 'ss', 's',
|
||||
0xA0 => 'h', 'l', 'q', 'a', 'aa', 'i', 'ii', 'u', 'uk', 'uu', 'uuv', 'ry', 'ryy', 'ly', 'lyy', 'e',
|
||||
0xB0 => 'ai', 'oo', 'oo', 'au', 'a', 'aa', 'aa', 'i', 'ii', 'y', 'yy', 'u', 'uu', 'ua', 'oe', 'ya',
|
||||
0xC0 => 'ie', 'e', 'ae', 'ai', 'oo', 'au', 'M', 'H', 'a`', '', '', '', 'r', '', '!', '',
|
||||
0xD0 => '', '', '', '', '.', ' // ', ':', '+', '++', ' * ', ' /// ', 'KR', '\'', NULL, NULL, NULL,
|
||||
0xE0 => '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xF0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x18.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x18.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => ' @ ', ' ... ', ',', '. ', ': ', ' // ', '', '-', ',', '. ', '', '', '', '', '', NULL,
|
||||
0x10 => '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x20 => 'a', 'e', 'i', 'o', 'u', 'O', 'U', 'ee', 'n', 'ng', 'b', 'p', 'q', 'g', 'm', 'l',
|
||||
0x30 => 's', 'sh', 't', 'd', 'ch', 'j', 'y', 'r', 'w', 'f', 'k', 'kha', 'ts', 'z', 'h', 'zr',
|
||||
0x40 => 'lh', 'zh', 'ch', '-', 'e', 'i', 'o', 'u', 'O', 'U', 'ng', 'b', 'p', 'q', 'g', 'm',
|
||||
0x50 => 't', 'd', 'ch', 'j', 'ts', 'y', 'w', 'k', 'g', 'h', 'jy', 'ny', 'dz', 'e', 'i', 'iy',
|
||||
0x60 => 'U', 'u', 'ng', 'k', 'g', 'h', 'p', 'sh', 't', 'd', 'j', 'f', 'g', 'h', 'ts', 'z',
|
||||
0x70 => 'r', 'ch', 'zh', 'i', 'k', 'r', 'f', 'zh', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x80 => NULL, 'H', 'X', 'W', 'M', ' 3 ', ' 333 ', 'a', 'i', 'k', 'ng', 'c', 'tt', 'tth', 'dd', 'nn',
|
||||
0x90 => 't', 'd', 'p', 'ph', 'ss', 'zh', 'z', 'a', 't', 'zh', 'gh', 'ng', 'c', 'jh', 'tta', 'ddh',
|
||||
0xA0 => 't', 'dh', 'ss', 'cy', 'zh', 'z', 'u', 'y', 'bh', '\'', NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xB0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xC0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xD0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xE0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xF0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x1d.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x1d.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'A', 'AE', NULL, 'B', 'C', 'D', 'D', 'E', NULL, NULL, 'J', 'K', 'L', 'M', NULL, 'O',
|
||||
0x10 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'P', NULL, NULL, 'T', 'U', NULL, NULL, NULL,
|
||||
0x20 => 'V', 'W', 'Z', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x30 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x40 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x50 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x60 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ue', 'b', 'd', 'f', 'm',
|
||||
0x70 => 'n', 'p', 'r', 'r', 's', 't', 'z', NULL, NULL, NULL, 'th', 'I', NULL, 'p', 'U', NULL,
|
||||
0x80 => 'b', 'd', 'f', 'g', 'k', 'l', 'm', 'n', 'p', 'r', 's', NULL, 'v', 'x', 'z', 'a',
|
||||
0x90 => NULL, 'd', 'e', 'e', NULL, NULL, 'i', NULL, NULL, 'u', NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xA0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xB0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xC0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xD0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xE0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xF0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x1e.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x1e.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'A', 'a', 'B', 'b', 'B', 'b', 'B', 'b', 'C', 'c', 'D', 'd', 'D', 'd', 'D', 'd',
|
||||
0x10 => 'D', 'd', 'D', 'd', 'E', 'e', 'E', 'e', 'E', 'e', 'E', 'e', 'E', 'e', 'F', 'f',
|
||||
0x20 => 'G', 'g', 'H', 'h', 'H', 'h', 'H', 'h', 'H', 'h', 'H', 'h', 'I', 'i', 'I', 'i',
|
||||
0x30 => 'K', 'k', 'K', 'k', 'K', 'k', 'L', 'l', 'L', 'l', 'L', 'l', 'L', 'l', 'M', 'm',
|
||||
0x40 => 'M', 'm', 'M', 'm', 'N', 'n', 'N', 'n', 'N', 'n', 'N', 'n', 'O', 'o', 'O', 'o',
|
||||
0x50 => 'O', 'o', 'O', 'o', 'P', 'p', 'P', 'p', 'R', 'r', 'R', 'r', 'R', 'r', 'R', 'r',
|
||||
0x60 => 'S', 's', 'S', 's', 'S', 's', 'S', 's', 'S', 's', 'T', 't', 'T', 't', 'T', 't',
|
||||
0x70 => 'T', 't', 'U', 'u', 'U', 'u', 'U', 'u', 'U', 'u', 'U', 'u', 'V', 'v', 'V', 'v',
|
||||
0x80 => 'W', 'w', 'W', 'w', 'W', 'w', 'W', 'w', 'W', 'w', 'X', 'x', 'X', 'x', 'Y', 'y',
|
||||
0x90 => 'Z', 'z', 'Z', 'z', 'Z', 'z', 'h', 't', 'w', 'y', 'a', 's', 's', 's', 'SS', NULL,
|
||||
0xA0 => 'A', 'a', 'A', 'a', 'A', 'a', 'A', 'a', 'A', 'a', 'A', 'a', 'A', 'a', 'A', 'a',
|
||||
0xB0 => 'A', 'a', 'A', 'a', 'A', 'a', 'A', 'a', 'E', 'e', 'E', 'e', 'E', 'e', 'E', 'e',
|
||||
0xC0 => 'E', 'e', 'E', 'e', 'E', 'e', 'E', 'e', 'I', 'i', 'I', 'i', 'O', 'o', 'O', 'o',
|
||||
0xD0 => 'O', 'o', 'O', 'o', 'O', 'o', 'O', 'o', 'O', 'o', 'O', 'o', 'O', 'o', 'O', 'o',
|
||||
0xE0 => 'O', 'o', 'O', 'o', 'U', 'u', 'U', 'u', 'U', 'u', 'U', 'u', 'U', 'u', 'U', 'u',
|
||||
0xF0 => 'U', 'u', 'Y', 'y', 'Y', 'y', 'Y', 'y', 'Y', 'y', 'LL', 'll', 'V', 'v', 'Y', 'y',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x1f.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x1f.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A',
|
||||
0x10 => 'e', 'e', 'e', 'e', 'e', 'e', NULL, NULL, 'E', 'E', 'E', 'E', 'E', 'E', NULL, NULL,
|
||||
0x20 => 'e', 'e', 'e', 'e', 'e', 'e', 'e', 'e', 'E', 'E', 'E', 'E', 'E', 'E', 'E', 'E',
|
||||
0x30 => 'i', 'i', 'i', 'i', 'i', 'i', 'i', 'i', 'I', 'I', 'I', 'I', 'I', 'I', 'I', 'I',
|
||||
0x40 => 'o', 'o', 'o', 'o', 'o', 'o', NULL, NULL, 'O', 'O', 'O', 'O', 'O', 'O', NULL, NULL,
|
||||
0x50 => 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', NULL, 'Y', NULL, 'Y', NULL, 'Y', NULL, 'Y',
|
||||
0x60 => 'o', 'o', 'o', 'o', 'o', 'o', 'o', 'o', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O',
|
||||
0x70 => 'a', 'a', 'e', 'e', 'e', 'e', 'i', 'i', 'o', 'o', 'y', 'y', 'o', 'o', NULL, NULL,
|
||||
0x80 => 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A',
|
||||
0x90 => 'e', 'e', 'e', 'e', 'e', 'e', 'e', 'e', 'E', 'E', 'E', 'E', 'E', 'E', 'E', 'E',
|
||||
0xA0 => 'o', 'o', 'o', 'o', 'o', 'o', 'o', 'o', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O',
|
||||
0xB0 => 'a', 'a', 'a', 'a', 'a', NULL, 'a', 'a', 'A', 'A', 'A', 'A', 'A', '\'', 'i', '\'',
|
||||
0xC0 => '~', '"~', 'e', 'e', 'e', NULL, 'e', 'e', 'E', 'E', 'E', 'E', 'E', '\'`', '\'\'', '\'~',
|
||||
0xD0 => 'i', 'i', 'i', 'i', NULL, NULL, 'i', 'i', 'I', 'I', 'I', 'I', NULL, '`\'', '`\'', '`~',
|
||||
0xE0 => 'y', 'y', 'y', 'y', 'r', 'r', 'y', 'y', 'Y', 'Y', 'Y', 'Y', 'R', '"`', '"\'', '`',
|
||||
0xF0 => NULL, NULL, 'o', 'o', 'o', NULL, 'o', 'o', 'O', 'O', 'O', 'O', 'O', '\'', '`', NULL,
|
||||
);
|
28
core/lib/Drupal/Component/Transliteration/data/x20.php
Normal file
28
core/lib/Drupal/Component/Transliteration/data/x20.php
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', '', '', '', '',
|
||||
0x10 => '-', '-', '-', '-', '-', '-', '||', '_', '\'', '\'', ',', '\'', '"', '"', ',,', '"',
|
||||
0x20 => '+', '++', '*', '*>', '.', '..', '...', '.', '
|
||||
', '
|
||||
|
||||
', '', '', '', '', '', ' ',
|
||||
0x30 => '%0', '%00', '\'', '"', '\'\'\'', '`', '``', '```', '^', '<', '>', '*', '!!', '!?', '-', '_',
|
||||
0x40 => '-', '^', '***', '--', '/', '[', ']', '??', '?!', '!?', '7', 'PP', '(]', '[)', '*', NULL,
|
||||
0x50 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, ' ',
|
||||
0x60 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', '',
|
||||
0x70 => '0', '', '', '', '4', '5', '6', '7', '8', '9', '+', '-', '=', '(', ')', 'n',
|
||||
0x80 => '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '-', '=', '(', ')', NULL,
|
||||
0x90 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xA0 => 'CE', 'CL', 'Cr', 'Fr.', 'L.', 'mil', 'N', 'Pts', 'Rs', 'W', 'NS', 'D', 'EU', 'K', 'T', 'Dr',
|
||||
0xB0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Rs', NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xC0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xD0 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0xE0 => '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xF0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x21.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x21.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'a/c', 'a/s', 'C', '', '', 'c/o', 'c/u', '', '', '', 'g', 'H', 'x', 'H', 'h', '',
|
||||
0x10 => 'I', 'I', 'L', 'l', 'lb', 'N', 'No', '(p)', 'P', 'P', 'Q', 'R', 'R', 'R', 'Rx', '',
|
||||
0x20 => '(sm)', 'TEL', '(tm)', '', 'Z', '', 'O', 'mho', 'Z', '', 'K', 'A', 'B', 'C', 'e', 'e',
|
||||
0x30 => 'E', 'F', NULL, 'M', 'o', '', 'b', 'g', 'd', 'i', 'Q', 'FAX', 'pi', '', '', 'Pi',
|
||||
0x40 => '', 'G', 'L', 'L', 'Y', 'D', 'd', 'e', 'i', 'j', '', '', 'per', '', NULL, NULL,
|
||||
0x50 => NULL, NULL, NULL, ' 1/3', ' 2/3', ' 1/5', ' 2/5', ' 3/5', ' 4/5', ' 1/6', ' 5/6', ' 1/8', ' 3/8', ' 5/8', ' 7/8', ' 1/',
|
||||
0x60 => 'I', 'II', 'III', 'IV', 'V', 'VI', 'VII', 'VIII', 'IX', 'X', 'XI', 'XII', 'L', 'C', 'D', 'M',
|
||||
0x70 => 'i', 'ii', 'iii', 'iv', 'v', 'vi', 'vii', 'viii', 'ix', 'x', 'xi', 'xii', 'l', 'c', 'd', 'm',
|
||||
0x80 => '(D', 'D)', '((|))', ')', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x90 => '-', '|', '-', '|', '-', '|', '\\', '/', '\\', '/', '-', '-', '~', '~', '-', '|',
|
||||
0xA0 => '-', '|', '-', '-', '-', '|', '-', '|', '|', '-', '-', '-', '-', '-', '-', '|',
|
||||
0xB0 => '|', '|', '|', '|', '|', '|', '^', 'V', '\\', '=', 'V', '^', '-', '-', '|', '|',
|
||||
0xC0 => '-', '-', '|', '|', '=', '|', '=', '=', '|', '=', '|', '=', '=', '=', '=', '=',
|
||||
0xD0 => '=', '|', '=', '|', '=', '|', '\\', '/', '\\', '/', '=', '=', '~', '~', '|', '|',
|
||||
0xE0 => '-', '|', '-', '|', '-', '-', '-', '|', '-', '|', '|', '|', '|', '|', '|', '|',
|
||||
0xF0 => '-', '\\', '\\', '|', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x22.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x22.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x10 => NULL, NULL, '-', NULL, NULL, '/', '\\', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x20 => NULL, NULL, NULL, '|', '|', '||', '||', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x30 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x40 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x50 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x60 => '=', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '<<', '>>', NULL, NULL, '<', '>',
|
||||
0x70 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x80 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x90 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xA0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xB0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xC0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xD0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xE0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xF0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x23.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x23.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x10 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x20 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '<', '>', NULL, NULL, NULL, NULL, NULL,
|
||||
0x30 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x40 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x50 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x60 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x70 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x80 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x90 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xA0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xB0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xC0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xD0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xE0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xF0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x24.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x24.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0x10 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0x20 => '', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x30 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x40 => '', '', '', '', '', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL,
|
||||
0x50 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x60 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0x70 => '', '', '', '', '(1)', '(2)', '(3)', '(4)', '(5)', '(6)', '(7)', '(8)', '(9)', '(10)', '(11)', '(12)',
|
||||
0x80 => '(13)', '(14)', '(15)', '(16)', '(17)', '(18)', '(19)', '(20)', '1.', '2.', '3.', '4.', '5.', '6.', '7.', '8.',
|
||||
0x90 => '9.', '10.', '11.', '12.', '13.', '14.', '15.', '16.', '17.', '18.', '19.', '20.', '(a)', '(b)', '(c)', '(d)',
|
||||
0xA0 => '(e)', '(f)', '(g)', '(h)', '(i)', '(j)', '(k)', '(l)', '(m)', '(n)', '(o)', '(p)', '(q)', '(r)', '(s)', '(t)',
|
||||
0xB0 => '(u)', '(v)', '(w)', '(x)', '(y)', '(z)', '', '', '', '', '', '', '', '', '', '',
|
||||
0xC0 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0xD0 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0xE0 => '', '', '', '', '', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL,
|
||||
0xF0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x25.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x25.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => '-', '-', '|', '|', '-', '-', '|', '|', '-', '-', '|', '|', '+', '+', '+', '+',
|
||||
0x10 => '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+',
|
||||
0x20 => '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+',
|
||||
0x30 => '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+',
|
||||
0x40 => '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '-', '-', '|', '|',
|
||||
0x50 => '-', '|', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+',
|
||||
0x60 => '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+', '+',
|
||||
0x70 => '+', '/', '\\', 'X', '-', '|', '-', '|', '-', '|', '-', '|', '-', '|', '-', '|',
|
||||
0x80 => '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#',
|
||||
0x90 => '#', '#', '#', '#', '-', '|', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xA0 => '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#', '#',
|
||||
0xB0 => '#', '#', '^', '^', '^', '^', '>', '>', '>', '>', '>', '>', 'V', 'V', 'V', 'V',
|
||||
0xC0 => '<', '<', '<', '<', '<', '<', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*',
|
||||
0xD0 => '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*', '*',
|
||||
0xE0 => '*', '*', '*', '*', '*', '*', '*', '#', '#', '#', '#', '#', '^', '^', '^', 'O',
|
||||
0xF0 => '#', '#', '#', '#', '#', '#', '#', '#', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x26.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x26.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0x10 => '', '', '', '', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', '', '',
|
||||
0x20 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0x30 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0x40 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0x50 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0x60 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0x70 => '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x80 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x90 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xA0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xB0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xC0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xD0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xE0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xF0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x27.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x27.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0x10 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0x20 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0x30 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0x40 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0x50 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL,
|
||||
0x60 => NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0x70 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0x80 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0x90 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0xA0 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0xB0 => NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL,
|
||||
0xC0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xD0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xE0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xF0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x28.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x28.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => ' ', 'a', '1', 'b', '\'', 'k', '2', 'l', '@', 'c', 'i', 'f', '/', 'm', 's', 'p',
|
||||
0x10 => '"', 'e', '3', 'h', '9', 'o', '6', 'r', '^', 'd', 'j', 'g', '>', 'n', 't', 'q',
|
||||
0x20 => ',', '*', '5', '<', '-', 'u', '8', 'v', '.', '%', '[', '$', '+', 'x', '!', '&',
|
||||
0x30 => ';', ':', '4', '\\', '0', 'z', '7', '(', '_', '?', 'w', ']', '#', 'y', ')', '=',
|
||||
0x40 => '[d7]', '[d17]', '[d27]', '[d127]', '[d37]', '[d137]', '[d237]', '[d1237]', '[d47]', '[d147]', '[d247]', '[d1247]', '[d347]', '[d1347]', '[d2347]', '[d12347]',
|
||||
0x50 => '[d57]', '[d157]', '[d257]', '[d1257]', '[d357]', '[d1357]', '[d2357]', '[d12357]', '[d457]', '[d1457]', '[d2457]', '[d12457]', '[d3457]', '[d13457]', '[d23457]', '[d123457]',
|
||||
0x60 => '[d67]', '[d167]', '[d267]', '[d1267]', '[d367]', '[d1367]', '[d2367]', '[d12367]', '[d467]', '[d1467]', '[d2467]', '[d12467]', '[d3467]', '[d13467]', '[d23467]', '[d123467]',
|
||||
0x70 => '[d567]', '[d1567]', '[d2567]', '[d12567]', '[d3567]', '[d13567]', '[d23567]', '[d123567]', '[d4567]', '[d14567]', '[d24567]', '[d124567]', '[d34567]', '[d134567]', '[d234567]', '[d1234567]',
|
||||
0x80 => '[d8]', '[d18]', '[d28]', '[d128]', '[d38]', '[d138]', '[d238]', '[d1238]', '[d48]', '[d148]', '[d248]', '[d1248]', '[d348]', '[d1348]', '[d2348]', '[d12348]',
|
||||
0x90 => '[d58]', '[d158]', '[d258]', '[d1258]', '[d358]', '[d1358]', '[d2358]', '[d12358]', '[d458]', '[d1458]', '[d2458]', '[d12458]', '[d3458]', '[d13458]', '[d23458]', '[d123458]',
|
||||
0xA0 => '[d68]', '[d168]', '[d268]', '[d1268]', '[d368]', '[d1368]', '[d2368]', '[d12368]', '[d468]', '[d1468]', '[d2468]', '[d12468]', '[d3468]', '[d13468]', '[d23468]', '[d123468]',
|
||||
0xB0 => '[d568]', '[d1568]', '[d2568]', '[d12568]', '[d3568]', '[d13568]', '[d23568]', '[d123568]', '[d4568]', '[d14568]', '[d24568]', '[d124568]', '[d34568]', '[d134568]', '[d234568]', '[d1234568]',
|
||||
0xC0 => '[d78]', '[d178]', '[d278]', '[d1278]', '[d378]', '[d1378]', '[d2378]', '[d12378]', '[d478]', '[d1478]', '[d2478]', '[d12478]', '[d3478]', '[d13478]', '[d23478]', '[d123478]',
|
||||
0xD0 => '[d578]', '[d1578]', '[d2578]', '[d12578]', '[d3578]', '[d13578]', '[d23578]', '[d123578]', '[d4578]', '[d14578]', '[d24578]', '[d124578]', '[d34578]', '[d134578]', '[d234578]', '[d1234578]',
|
||||
0xE0 => '[d678]', '[d1678]', '[d2678]', '[d12678]', '[d3678]', '[d13678]', '[d23678]', '[d123678]', '[d4678]', '[d14678]', '[d24678]', '[d124678]', '[d34678]', '[d134678]', '[d234678]', '[d1234678]',
|
||||
0xF0 => '[d5678]', '[d15678]', '[d25678]', '[d125678]', '[d35678]', '[d135678]', '[d235678]', '[d1235678]', '[d45678]', '[d145678]', '[d245678]', '[d1245678]', '[d345678]', '[d1345678]', '[d2345678]', '[d12345678]',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x29.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x29.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x10 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x20 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x30 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x40 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x50 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x60 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x70 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x80 => NULL, NULL, NULL, NULL, NULL, '((', '))', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x90 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xA0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xB0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xC0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xD0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xE0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xF0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x2a.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x2a.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x10 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x20 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x30 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x40 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x50 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x60 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x70 => NULL, NULL, NULL, NULL, '::=', '==', '===', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x80 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x90 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xA0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xB0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xC0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xD0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xE0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xF0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x2e.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x2e.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x10 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x20 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x30 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x40 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x50 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x60 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x70 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x80 => 'you', 'chang', 'ya', 'yin', 'ya', 'ren', 'jiong', NULL, 'dao', 'dao', 'bo', 'jie', 'xiao', 'xiao', 'wu', 'wang',
|
||||
0x90 => 'wang', 'wu', 'si', 'yao', 'ji', 'ji', 'xin', 'xin', 'shou', 'sui', NULL, 'ri', 'ri', 'yue', 'dai', 'mu',
|
||||
0xA0 => 'min', 'shui', 'shui', 'biao', 'zhao', 'zhao', 'qiang', 'niu', 'quan', NULL, NULL, 'mu', 'shi', 'shi', 'shi', 'si',
|
||||
0xB0 => 'si', 'gang', 'wang', NULL, 'wang', NULL, 'ren', 'ren', NULL, NULL, 'yu', 'yu', 'rou', 'ju', 'cao', 'cao',
|
||||
0xC0 => 'cao', 'hu', 'yi', 'xi', 'xi', 'jian', NULL, NULL, 'yan', 'bei', NULL, 'che', 'chuo', 'chuo', 'chuo', 'fu',
|
||||
0xD0 => 'jin', 'chang', 'chang', 'zhang', 'men', NULL, 'fu', 'yu', 'qing', 'wei', 'ye', 'feng', 'fei', 'shi', NULL, 'shi',
|
||||
0xE0 => 'shi', NULL, 'ma', 'gu', 'gui', 'yu', 'niao', 'lu', 'mai', 'huang', 'mian', 'qi', 'qi', 'chi', 'chi', 'long',
|
||||
0xF0 => 'long', 'gui', 'gui', 'gui', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x2f.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x2f.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'yi', 'gun', 'zhu', 'pie', 'yi', 'jue', 'er', 'tou', 'ren', 'er', 'ru', 'ba', 'jiong', 'mi', 'bing', 'ji',
|
||||
0x10 => 'qian', 'dao', 'li', 'bao', 'bi', 'fang', 'xi', 'shi', 'bo', 'jie', 'chang', 'si', 'you', 'kou', 'wei', 'tu',
|
||||
0x20 => 'shi', 'zhi', 'sui', 'xi', 'da', 'nu', 'zi', 'mian', 'cun', 'xiao', 'you', 'shi', 'che', 'shan', 'chuan', 'gong',
|
||||
0x30 => 'ji', 'jin', 'gan', 'yao', 'guang', 'yin', 'gong', 'yi', 'gong', 'ji', 'shan', 'chi', 'xin', 'ge', 'hu', 'shou',
|
||||
0x40 => 'zhi', 'pu', 'wen', 'dou', 'jin', 'fang', 'wu', 'ri', 'yue', 'yue', 'mu', 'qian', 'zhi', 'dai', 'shu', 'wu',
|
||||
0x50 => 'bi', 'mao', 'shi', 'qi', 'shui', 'huo', 'zhao', 'fu', 'yao', 'pan', 'pian', 'ya', 'niu', 'quan', 'xuan', 'yu',
|
||||
0x60 => 'gua', 'wa', 'gan', 'sheng', 'yong', 'tian', 'pi', 'ne', 'bo', 'bai', 'pi', 'min', 'mu', 'mao', 'shi', 'shi',
|
||||
0x70 => 'shi', 'rou', 'he', 'xue', 'li', 'zhu', 'mi', 'mi', 'fou', 'wang', 'yang', 'yu', 'lao', 'er', 'lei', 'er',
|
||||
0x80 => 'yu', 'rou', 'chen', 'zi', 'zhi', 'jiu', 'she', 'chuan', 'zhou', 'gen', 'se', 'cao', 'hu', 'chong', 'xue', 'xing',
|
||||
0x90 => 'yi', 'ya', 'jian', 'jiao', 'yan', 'gu', 'dou', 'shi', 'zhi', 'bei', 'chi', 'zou', 'zu', 'shen', 'che', 'xin',
|
||||
0xA0 => 'chen', 'chuo', 'yi', 'you', 'bian', 'li', 'jin', 'zhang', 'men', 'fu', 'li', 'zhui', 'yu', 'qing', 'fei', 'mian',
|
||||
0xB0 => 'ge', 'wei', 'jiu', 'yin', 'ye', 'feng', 'fei', 'shi', 'shou', 'xiang', 'ma', 'gu', 'gao', 'biao', 'dou', 'chang',
|
||||
0xC0 => 'ge', 'gui', 'yu', 'niao', 'lu', 'lu', 'mai', 'ma', 'huang', 'shu', 'hei', 'zhi', 'mian', 'ding', 'gu', 'shu',
|
||||
0xD0 => 'bi', 'qi', 'chi', 'long', 'gui', 'yue', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xE0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xF0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x30.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x30.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => ' ', ',', '.', '"', '[JIS]', '"', '/', 'ling', '<', '>', '<<', '>>', '[', '] ', '{', '} ',
|
||||
0x10 => '[(', ')] ', '@', 'X ', '[', ']', '[[', ']] ', '[', ']', '[', ']', '~ ', '"', '"', ',,',
|
||||
0x20 => '@', '1', '2', '3', '4', '5', '6', '7', '8', '9', '', '', '', '', '', '',
|
||||
0x30 => '~', '+', '+', '+', '+', '', '@', ' // ', 'shi', 'nian', 'sa', NULL, NULL, NULL, '', '',
|
||||
0x40 => NULL, '~a', 'a', '~i', 'i', '~u', 'u', '~e', 'e', '~o', 'o', 'ka', 'ka', 'ki', 'ki', 'ku',
|
||||
0x50 => 'ku', 'ke', 'ke', 'ko', 'ko', 'sa', 'sa', 'shi', 'shi', 'su', 'su', 'se', 'se', 'so', 'so', 'ta',
|
||||
0x60 => 'ta', 'chi', 'chi', '~tsu', 'tsu', 'tsu', 'te', 'te', 'to', 'to', 'na', 'ni', 'nu', 'ne', 'no', 'ha',
|
||||
0x70 => 'ha', 'ha', 'hi', 'hi', 'hi', 'fu', 'fu', 'fu', 'he', 'he', 'he', 'ho', 'ho', 'ho', 'ma', 'mi',
|
||||
0x80 => 'mu', 'me', 'mo', '~ya', 'ya', '~yu', 'yu', '~yo', 'yo', 'ra', 'ri', 'ru', 're', 'ro', '~wa', 'wa',
|
||||
0x90 => 'wi', 'we', 'wo', 'n', 'u', NULL, NULL, NULL, NULL, '', '', '', '', '"', '"', NULL,
|
||||
0xA0 => NULL, '~a', 'a', '~i', 'i', '~u', 'u', '~e', 'e', '~o', 'o', 'ka', 'ka', 'ki', 'ki', 'ku',
|
||||
0xB0 => 'ku', 'ke', 'ke', 'ko', 'ko', 'sa', 'sa', 'shi', 'shi', 'su', 'su', 'se', 'se', 'so', 'so', 'ta',
|
||||
0xC0 => 'ta', 'chi', 'chi', '~tsu', 'tsu', 'tsu', 'te', 'te', 'to', 'to', 'na', 'ni', 'nu', 'ne', 'no', 'ha',
|
||||
0xD0 => 'ha', 'ha', 'hi', 'hi', 'hi', 'fu', 'fu', 'fu', 'he', 'he', 'he', 'ho', 'ho', 'ho', 'ma', 'mi',
|
||||
0xE0 => 'mu', 'me', 'mo', '~ya', 'ya', '~yu', 'yu', '~yo', 'yo', 'ra', 'ri', 'ru', 're', 'ro', '~wa', 'wa',
|
||||
0xF0 => 'wi', 'we', 'wo', 'n', 'u', '~ka', '~ke', 'wa', 'wi', 'we', 'wo', '', '', '"', '"', NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x31.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x31.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => NULL, NULL, NULL, NULL, NULL, 'b', 'p', 'm1', 'f', 'd', 't', 'n1', 'l', 'g', 'k', 'h',
|
||||
0x10 => 'j', 'q', 'x', 'zhi1', 'chi1', 'shi1', 'ri1', 'zi1', 'ci1', 'si1', 'a1', 'o1', 'e1', 'eh1', 'ai1', 'ei1',
|
||||
0x20 => 'ao1', 'ou1', 'an1', 'en1', 'ang1', 'eng1', 'er1', 'yi1', 'wu1', 'yu1', 'V', 'NG', 'GN', NULL, NULL, NULL,
|
||||
0x30 => NULL, 'g', 'kk', 'gs', 'n', 'nj', 'nh', 'd', 'tt', 'l', 'lg', 'lm', 'lb', 'ls', 'lt', 'lp',
|
||||
0x40 => 'rh', 'm', 'b', 'pp', 'bs', 's', 'ss', '', 'j', 'jj', 'ch', 'k', 't', 'p', 'h', 'a',
|
||||
0x50 => 'ae', 'ya', 'yae', 'eo', 'e', 'yeo', 'ye', 'o', 'wa', 'wae', 'oe', 'yo', 'u', 'wo', 'we', 'wi',
|
||||
0x60 => 'yu', 'eu', 'ui', 'i', '', 'nn', 'nd', 'ns', 'nZ', 'lgs', 'ld', 'lbs', 'lZ', 'lQ', 'mb', 'ms',
|
||||
0x70 => 'mZ', 'mN', 'bg', '', 'bsg', 'bst', 'bj', 'bt', 'bN', 'bbN', 'sg', 'sn', 'sd', 'sb', 'sj', 'Z',
|
||||
0x80 => '', 'N', 'Ns', 'NZ', 'pN', 'hh', 'Q', 'yo-ya', 'yo-yae', 'yo-i', 'yu-yeo', 'yu-ye', 'yu-i', 'U', 'U-i', NULL,
|
||||
0x90 => '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
|
||||
0xA0 => 'BU', 'ZI', 'JI', 'GU', 'EE', 'ENN', 'OO', 'ONN', 'IR', 'ANN', 'INN', 'UNN', 'IM', 'NGG', 'AINN', 'AUNN',
|
||||
0xB0 => 'AM', 'OM', 'ONG', 'INNN', 'P', 'T', 'K', 'H', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xC0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xD0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xE0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xF0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x32.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x32.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => '(g)', '(n)', '(d)', '(l)', '(m)', '(b)', '(s)', '()', '(j)', '(ch)', '(k)', '(t)', '(p)', '(h)', '(ga)', '(na)',
|
||||
0x10 => '(da)', '(la)', '(ma)', '(ba)', '(sa)', '(a)', '(ja)', '(cha)', '(ka)', '(ta)', '(pa)', '(ha)', '(ju)', NULL, NULL, NULL,
|
||||
0x20 => '(1) ', '(2) ', '(3) ', '(4) ', '(5) ', '(6) ', '(7) ', '(8) ', '(9) ', '(10) ', '(Yue) ', '(Huo) ', '(Shui) ', '(Mu) ', '(Jin) ', '(Tu) ',
|
||||
0x30 => '(Ri) ', '(Zhu) ', '(You) ', '(She) ', '(Ming) ', '(Te) ', '(Cai) ', '(Zhu) ', '(Lao) ', '(Dai) ', '(Hu) ', '(Xue) ', '(Jian) ', '(Qi) ', '(Zi) ', '(Xie) ',
|
||||
0x40 => '(Ji) ', '(Xiu) ', '<<', '>>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x50 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0x60 => 'g', 'n', 'd', 'l', 'm', 'b', 's', '()', 'j', 'ch', 'k', 't', 'p', 'h', 'ga', 'na',
|
||||
0x70 => 'da', 'la', 'ma', 'ba', 'sa', 'a', 'ja', 'cha', 'ka', 'ta', 'pa', 'ha', NULL, NULL, NULL, 'KIS ',
|
||||
0x80 => '(1) ', '(2) ', '(3) ', '(4) ', '(5) ', '(6) ', '(7) ', '(8) ', '(9) ', '(10) ', '(Yue) ', '(Huo) ', '(Shui) ', '(Mu) ', '(Jin) ', '(Tu) ',
|
||||
0x90 => '(Ri) ', '(Zhu) ', '(You) ', '(She) ', '(Ming) ', '(Te) ', '(Cai) ', '(Zhu) ', '(Lao) ', '(Mi) ', '(Nan) ', '(Nu) ', '(Shi) ', '(You) ', '(Yin) ', '(Zhu) ',
|
||||
0xA0 => '(Xiang) ', '(Xiu) ', '(Xie) ', '(Zheng) ', '(Shang) ', '(Zhong) ', '(Xia) ', '(Zuo) ', '(You) ', '(Yi) ', '(Zong) ', '(Xue) ', '(Jian) ', '(Qi) ', '(Zi) ', '(Xie) ',
|
||||
0xB0 => '(Ye) ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xC0 => '1M', '2M', '3M', '4M', '5M', '6M', '7M', '8M', '9M', '10M', '11M', '12M', NULL, NULL, NULL, NULL,
|
||||
0xD0 => 'a', 'i', 'u', 'u', 'o', 'ka', 'ki', 'ku', 'ke', 'ko', 'sa', 'si', 'su', 'se', 'so', 'ta',
|
||||
0xE0 => 'ti', 'tu', 'te', 'to', 'na', 'ni', 'nu', 'ne', 'no', 'ha', 'hi', 'hu', 'he', 'ho', 'ma', 'mi',
|
||||
0xF0 => 'mu', 'me', 'mo', 'ya', 'yu', 'yo', 'ra', 'ri', 'ru', 're', 'ro', 'wa', 'wi', 'we', 'wo', NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x33.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x33.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'apartment', 'alpha', 'ampere', 'are', 'inning', 'inch', 'won', 'escudo', 'acre', 'ounce', 'ohm', 'kai-ri', 'carat', 'calorie', 'gallon', 'gamma',
|
||||
0x10 => 'giga', 'guinea', 'curie', 'guilder', 'kilo', 'kilogram', 'kilometer', 'kilowatt', 'gram', 'gram ton', 'cruzeiro', 'krone', 'case', 'koruna', 'co-op', 'cycle',
|
||||
0x20 => 'centime', 'shilling', 'centi', 'cent', 'dozen', 'desi', 'dollar', 'ton', 'nano', 'knot', 'heights', 'percent', 'parts', 'barrel', 'piaster', 'picul',
|
||||
0x30 => 'pico', 'building', 'farad', 'feet', 'bushel', 'franc', 'hectare', 'peso', 'pfennig', 'hertz', 'pence', 'page', 'beta', 'point', 'volt', 'hon',
|
||||
0x40 => 'pound', 'hall', 'horn', 'micro', 'mile', 'mach', 'mark', 'mansion', 'micron', 'milli', 'millibar', 'mega', 'megaton', 'meter', 'yard', 'yard',
|
||||
0x50 => 'yuan', 'liter', 'lira', 'rupee', 'ruble', 'rem', 'roentgen', 'watt', '0h', '1h', '2h', '3h', '4h', '5h', '6h', '7h',
|
||||
0x60 => '8h', '9h', '10h', '11h', '12h', '13h', '14h', '15h', '16h', '17h', '18h', '19h', '20h', '21h', '22h', '23h',
|
||||
0x70 => '24h', 'hPa', 'da', 'AU', 'bar', 'oV', 'pc', 'dm', NULL, NULL, 'IU', 'Heisei', 'Syouwa', 'Taisyou', 'Meiji', 'Inc.',
|
||||
0x80 => 'pA', 'nA', 'microamp', 'mA', 'kA', 'KB', 'MB', 'GB', 'cal', 'kcal', 'pF', 'nF', 'microFarad', 'microgram', 'mg', 'kg',
|
||||
0x90 => 'Hz', 'kHz', 'MHz', 'GHz', 'THz', 'microliter', 'ml', 'dl', 'kl', 'fm', 'nm', 'micrometer', 'mm', 'cm', 'km', 'mm^2',
|
||||
0xA0 => 'cm^2', 'm^2', 'km^2', 'mm^4', 'cm^3', 'm^3', 'km^3', 'm/s', 'm/s^2', 'Pa', 'kPa', 'MPa', 'GPa', 'rad', 'rad/s', 'rad/s^2',
|
||||
0xB0 => 'ps', 'ns', 'microsecond', 'ms', 'pV', 'nV', 'microvolt', 'mV', 'kV', 'MV', 'pW', 'nW', 'microwatt', 'mW', 'kW', 'MW',
|
||||
0xC0 => 'kOhm', 'MOhm', 'a.m.', 'Bq', 'cc', 'cd', 'C/kg', 'Co.', 'dB', 'Gy', 'ha', 'HP', 'in', 'KK', 'KM', 'kt',
|
||||
0xD0 => 'lm', 'ln', 'log', 'lx', 'mb', 'mil', 'mol', 'pH', 'p.m.', 'PPM', 'PR', 'sr', 'Sv', 'Wb', 'V/m', 'A/m',
|
||||
0xE0 => '1d', '2d', '3d', '4d', '5d', '6d', '7d', '8d', '9d', '10d', '11d', '12d', '13d', '14d', '15d', '16d',
|
||||
0xF0 => '17d', '18d', '19d', '20d', '21d', '22d', '23d', '24d', '25d', '26d', '27d', '28d', '29d', '30d', '31d', NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x34.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x34.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'qiu', 'tian', NULL, NULL, 'kua', 'wu', 'yin', NULL, NULL, NULL, NULL, NULL, 'yi', NULL, NULL, NULL,
|
||||
0x10 => NULL, NULL, NULL, NULL, NULL, NULL, 'xie', NULL, NULL, NULL, NULL, NULL, 'chou', NULL, NULL, NULL,
|
||||
0x20 => NULL, 'nuo', NULL, NULL, 'dan', NULL, NULL, NULL, 'xu', 'xing', NULL, 'xiong', 'liu', 'lin', 'xiang', 'yong',
|
||||
0x30 => 'xin', 'zhen', 'dai', 'wu', 'pan', NULL, NULL, 'ma', 'qian', 'yi', 'yin', 'nei', 'cheng', 'feng', NULL, NULL,
|
||||
0x40 => NULL, 'zhuo', 'fang', 'ao', 'wu', 'zuo', NULL, 'zhou', 'dong', 'su', 'yi', 'qiong', 'kuang', 'lei', 'nao', 'zhu',
|
||||
0x50 => 'shu', NULL, NULL, NULL, 'xu', NULL, NULL, 'shen', 'jie', 'die', 'nuo', 'su', 'yi', 'long', 'ying', 'beng',
|
||||
0x60 => NULL, NULL, NULL, 'lan', 'miao', 'yi', 'li', 'ji', 'yu', 'luo', 'chai', NULL, NULL, NULL, 'hun', 'xu',
|
||||
0x70 => 'hui', 'rao', NULL, 'zhou', NULL, 'han', 'xi', 'tai', 'yao', 'hui', 'jun', 'ma', 'lue', 'tang', 'yao', 'zhao',
|
||||
0x80 => 'zhai', 'yu', 'zhuo', 'er', 'ran', 'qi', 'chi', 'wu', 'han', 'tang', 'se', NULL, 'qiong', 'lei', 'sa', NULL,
|
||||
0x90 => NULL, 'kui', 'pu', 'ta', 'shu', 'yang', 'ou', 'tai', NULL, 'mian', 'yin', 'diao', 'yu', 'mie', 'jun', 'niao',
|
||||
0xA0 => 'xie', 'you', NULL, NULL, 'che', 'feng', 'lei', 'li', NULL, 'luo', NULL, 'ji', NULL, NULL, NULL, NULL,
|
||||
0xB0 => 'quan', NULL, 'cai', 'liang', 'gu', 'mao', NULL, 'gua', 'sui', NULL, NULL, 'mao', 'man', 'quan', 'shi', 'li',
|
||||
0xC0 => NULL, 'wang', 'kou', 'du', 'zhen', 'ting', NULL, NULL, 'bing', 'huo', 'dong', 'gong', 'cheng', NULL, 'qin', 'jiong',
|
||||
0xD0 => 'lu', 'xing', NULL, 'nan', 'xie', NULL, 'bi', 'jie', 'su', NULL, 'gong', NULL, 'you', 'xing', 'qia', 'pi',
|
||||
0xE0 => 'dian', 'fu', 'luo', 'qia', 'qia', 'tang', 'bai', 'gan', 'ci', 'xuan', 'lang', NULL, NULL, 'she', NULL, 'li',
|
||||
0xF0 => 'hua', 'tou', 'pian', 'di', 'ruan', 'e', 'qie', 'yi', 'zhuo', 'rui', 'jian', NULL, 'chi', 'chong', 'xi', NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x35.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x35.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'lue', 'deng', 'lin', 'jue', 'su', 'xiao', 'zan', NULL, NULL, 'zhu', 'zhan', 'jian', 'zou', 'chua', 'xie', 'li',
|
||||
0x10 => NULL, 'chi', 'xi', 'jian', NULL, 'ji', NULL, 'fei', 'chu', 'beng', 'jie', NULL, 'ba', 'liang', 'kuai', NULL,
|
||||
0x20 => 'xia', 'bie', 'jue', 'lei', 'xin', 'bai', 'yang', 'lu', 'bei', 'e', 'lu', NULL, NULL, 'che', 'nuo', 'xuan',
|
||||
0x30 => 'heng', 'yu', NULL, 'gui', 'yi', 'xuan', 'gong', 'lou', 'ti', 'le', 'shi', NULL, 'sun', 'yao', 'xian', 'zou',
|
||||
0x40 => NULL, 'que', 'yin', 'xi', 'zhi', 'jia', 'hu', 'la', 'yi', 'ke', 'fu', 'qin', 'ai', NULL, 'ke', 'chu',
|
||||
0x50 => 'xie', 'chu', 'wei', NULL, NULL, 'huan', 'su', 'you', NULL, 'jun', 'zhao', 'xu', 'shi', NULL, 'shua', 'kui',
|
||||
0x60 => 'shuang', 'he', 'gai', 'yan', 'qiu', 'shen', 'hua', 'xi', 'fan', 'pang', 'dan', 'fang', 'gong', 'ao', 'fu', 'ne',
|
||||
0x70 => 'xue', 'you', 'hua', NULL, 'chen', 'guo', 'n', 'hua', 'li', 'fa', 'xiao', 'pou', NULL, 'si', NULL, NULL,
|
||||
0x80 => 'le', 'lin', 'yi', 'hou', NULL, 'xu', 'qu', 'er', NULL, NULL, 'xun', NULL, NULL, NULL, NULL, 'nie',
|
||||
0x90 => 'wei', 'xie', 'ti', 'hong', 'tun', 'nie', 'nie', 'yin', 'zhen', NULL, NULL, NULL, NULL, NULL, 'wai', 'shou',
|
||||
0xA0 => 'nuo', 'ye', 'qi', 'tou', 'han', 'jun', 'dong', 'hun', 'lu', 'ju', 'huo', 'ling', NULL, 'tian', 'lun', NULL,
|
||||
0xB0 => NULL, NULL, NULL, NULL, NULL, 'ge', 'yan', 'shi', 'xue', 'pen', 'chun', 'niu', 'duo', 'ze', 'e', 'xie',
|
||||
0xC0 => 'you', 'e', 'sheng', 'wen', 'ku', 'hu', 'ge', 'xia', 'man', 'lue', 'ji', 'hou', 'zhi', NULL, NULL, 'wai',
|
||||
0xD0 => NULL, 'bai', 'ai', 'zhui', 'qian', 'gou', 'dan', 'bei', 'bo', 'chu', 'li', 'xiao', 'xiu', NULL, NULL, NULL,
|
||||
0xE0 => NULL, NULL, 'hong', 'ti', 'cu', 'kuo', 'lao', 'zhi', 'xie', 'xi', NULL, 'qie', 'zha', 'xi', NULL, NULL,
|
||||
0xF0 => 'cong', 'ji', 'huo', 'ta', 'yan', 'xu', 'po', 'sai', NULL, NULL, NULL, 'guo', 'ye', 'xiang', 'xue', 'he',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x36.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x36.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'zuo', 'yi', 'ci', NULL, 'leng', 'xian', 'tai', 'rong', 'yi', 'zhi', 'xi', 'xian', 'ju', 'ji', 'han', NULL,
|
||||
0x10 => 'pao', 'li', NULL, 'lan', 'sai', 'han', 'yan', 'qu', NULL, 'yan', 'han', 'kan', 'chi', 'nie', 'huo', NULL,
|
||||
0x20 => 'bi', 'xia', 'weng', 'xuan', 'wan', 'you', 'qin', 'xu', 'nie', 'bi', 'hao', 'jing', 'ao', 'ao', NULL, NULL,
|
||||
0x30 => 'zhen', 'tan', 'ju', NULL, 'zuo', 'bu', 'jie', 'ai', 'zang', 'ci', 'fa', NULL, NULL, NULL, NULL, 'nie',
|
||||
0x40 => 'liu', 'mei', 'dui', 'bang', 'bi', 'bao', NULL, 'chu', 'xia', 'tian', 'chang', NULL, NULL, 'duo', 'wei', 'fu',
|
||||
0x50 => 'duo', 'yu', 'ye', 'kui', 'wei', 'kuai', NULL, 'wei', 'yao', 'long', 'xing', 'zhuan', 'chi', 'xie', 'nie', 'lang',
|
||||
0x60 => 'yi', 'zong', 'man', 'zhang', 'xia', 'gun', 'xie', NULL, 'ji', 'liao', 'yi', 'ji', 'yin', NULL, 'da', 'yi',
|
||||
0x70 => 'xie', 'hao', 'yong', 'kan', 'chan', 'tai', 'tang', 'zhi', 'bao', 'meng', 'kui', 'chan', 'lei', NULL, 'xi', NULL,
|
||||
0x80 => 'xi', 'qiao', 'nang', 'yun', NULL, 'long', 'fu', 'zong', NULL, 'gu', 'kai', 'diao', 'hua', 'kui', NULL, 'gao',
|
||||
0x90 => 'tao', NULL, 'shan', 'lai', 'nie', 'fu', 'gao', 'qie', 'ban', 'jia', 'kong', 'xi', 'yu', 'zhui', 'shen', 'chuo',
|
||||
0xA0 => 'xiao', 'ji', 'nu', 'xiao', 'yi', 'yu', 'yi', 'yan', 'shen', 'ran', 'hao', 'sa', 'jun', 'you', NULL, 'xin',
|
||||
0xB0 => 'pei', 'qiu', 'chan', NULL, 'bu', 'dong', 'si', 'er', NULL, 'mao', 'yun', 'ji', NULL, 'qiao', 'xiong', 'pao',
|
||||
0xC0 => 'chu', 'peng', 'nuo', 'jie', 'yi', 'er', 'duo', NULL, NULL, NULL, 'duo', NULL, NULL, 'qie', 'lu', 'qiu',
|
||||
0xD0 => 'sou', 'can', 'dou', 'xi', 'feng', 'yi', 'suo', 'qie', 'po', 'xin', 'tong', 'xin', 'you', 'bei', 'long', NULL,
|
||||
0xE0 => NULL, NULL, NULL, 'yun', 'li', 'ta', 'lan', 'man', 'qiang', 'zhou', 'yan', 'xi', 'lu', 'xi', 'sao', 'fan',
|
||||
0xF0 => NULL, 'wei', 'fa', 'yi', 'nao', 'cheng', 'tan', 'ji', 'shu', 'pian', 'an', 'kua', 'cha', NULL, 'xian', 'zhi',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x37.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x37.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => NULL, NULL, 'feng', 'lian', 'xun', 'xu', 'mi', 'hui', 'mu', 'yong', 'zhan', 'yi', 'nou', 'tang', 'xi', 'yun',
|
||||
0x10 => 'shu', 'fu', 'yi', 'da', NULL, 'lian', 'cao', 'can', 'ju', 'lu', 'su', 'nen', 'ao', 'an', 'qian', NULL,
|
||||
0x20 => 'cui', 'cong', NULL, 'ran', 'nian', 'mai', 'xin', 'yue', 'nai', 'ao', 'shen', 'ma', NULL, NULL, 'lan', 'xi',
|
||||
0x30 => 'yue', 'zhi', 'weng', 'huai', 'meng', 'niao', 'wan', 'mi', 'nie', 'qu', 'zan', 'lian', 'zhi', 'zi', 'hai', 'xu',
|
||||
0x40 => 'hao', 'xuan', 'zhi', 'mian', 'chun', 'gou', NULL, 'chun', 'luan', 'zhu', 'shou', 'liao', 'jiu', 'xie', 'ding', 'jie',
|
||||
0x50 => 'rong', 'mang', NULL, 'ke', 'yao', 'ning', 'yi', 'lang', 'yong', 'yin', 'yan', 'su', NULL, 'lin', 'ya', 'mao',
|
||||
0x60 => 'ming', 'zui', 'yu', 'yi', 'gou', 'mi', 'jun', 'wen', NULL, 'kang', 'dian', 'long', NULL, 'xing', 'cui', 'qiao',
|
||||
0x70 => 'mian', 'meng', 'qin', NULL, 'wan', 'de', 'ai', NULL, 'bian', 'nou', 'lian', 'jin', 'yu', 'chui', 'zuo', 'bo',
|
||||
0x80 => 'hui', 'yao', 'tui', 'ji', 'an', 'luo', 'ji', 'wei', 'bo', 'za', 'xu', 'nian', 'yun', NULL, 'ba', 'zhe',
|
||||
0x90 => 'ju', 'wei', 'xie', 'qi', 'yi', 'xie', 'ci', 'qiu', 'du', 'niao', 'qi', 'ji', 'tui', NULL, 'song', 'dian',
|
||||
0xA0 => 'lao', 'zhan', NULL, NULL, 'yin', 'cen', 'ji', 'hui', 'zi', 'lan', 'nao', 'ju', 'qin', 'dai', NULL, 'jie',
|
||||
0xB0 => 'xu', 'cong', 'yong', 'dou', 'chi', NULL, 'min', 'huang', 'sui', 'ke', 'zu', 'hao', 'cheng', 'xue', 'ni', 'chi',
|
||||
0xC0 => 'lian', 'an', 'mu', 'si', 'xiang', 'yang', 'hua', 'cuo', 'qiu', 'lao', 'fu', 'dui', 'mang', 'lang', 'tuo', 'han',
|
||||
0xD0 => 'mang', 'bo', 'qun', 'qi', 'han', NULL, 'long', NULL, 'tiao', 'ze', 'qi', 'zan', 'mi', 'pei', 'zhan', 'xiang',
|
||||
0xE0 => 'gang', NULL, 'qi', NULL, 'lu', NULL, 'yun', 'e', 'duan', 'min', 'wei', 'quan', 'sou', 'min', 'tu', NULL,
|
||||
0xF0 => 'ming', 'yao', 'jue', 'li', 'kuai', 'gang', 'yuan', 'da', NULL, 'lao', 'lou', 'qian', 'ao', 'biao', 'yong', 'mang',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x38.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x38.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'dao', NULL, 'ao', NULL, 'xi', 'fu', 'dan', 'jiu', 'run', 'tong', 'qu', 'e', 'qi', 'ji', 'ji', 'hua',
|
||||
0x10 => 'jiao', 'zui', 'biao', 'meng', 'bai', 'wei', 'yi', 'ao', 'yu', 'hao', 'dui', 'wo', 'ni', 'cuan', NULL, 'li',
|
||||
0x20 => 'lu', 'niao', 'huai', 'li', NULL, 'lu', 'feng', 'mi', 'yu', NULL, 'ju', NULL, NULL, 'zhan', 'peng', 'yi',
|
||||
0x30 => NULL, 'ji', 'bi', NULL, 'ren', 'huang', 'fan', 'ge', 'ku', 'jie', 'sha', NULL, 'si', 'tong', 'yuan', 'zi',
|
||||
0x40 => 'bi', 'kua', 'li', 'huang', 'xun', 'nuo', NULL, 'zhe', 'wen', 'xian', 'qia', 'ye', 'mao', NULL, NULL, 'shu',
|
||||
0x50 => NULL, 'qiao', 'zhun', 'kun', 'wu', 'ying', 'chuang', 'ti', 'lian', 'bi', 'gou', 'mang', 'xie', 'feng', 'lou', 'zao',
|
||||
0x60 => 'zheng', 'chu', 'man', 'long', NULL, 'yin', 'pin', 'zheng', 'jian', 'luan', 'nie', 'yi', NULL, 'ji', 'ji', 'zhai',
|
||||
0x70 => 'yu', 'jiu', 'huan', 'zhi', 'la', 'ling', 'zhi', 'ben', 'zha', 'ju', 'dan', 'liao', 'yi', 'zhao', 'xian', 'chi',
|
||||
0x80 => 'ci', 'chi', 'yan', 'lang', 'dou', 'long', 'chan', NULL, 'tui', 'cha', 'ai', 'chi', NULL, 'ying', 'zhe', 'tou',
|
||||
0x90 => NULL, 'tui', 'cha', 'yao', 'zong', NULL, 'pan', 'qiao', 'lian', 'qin', 'lu', 'yan', 'kang', 'su', 'yi', 'chan',
|
||||
0xA0 => 'jiong', 'jiang', NULL, 'jing', NULL, 'dong', NULL, 'juan', 'han', 'di', NULL, NULL, 'hong', NULL, 'chi', 'diao',
|
||||
0xB0 => 'bi', NULL, 'xun', 'lu', NULL, 'xie', 'bi', NULL, 'bi', NULL, 'xian', 'rui', 'bie', 'er', 'juan', NULL,
|
||||
0xC0 => 'zhen', 'bei', 'e', 'yu', 'qu', 'zan', 'mi', 'yi', 'si', NULL, NULL, NULL, 'shan', 'tai', 'mu', 'jing',
|
||||
0xD0 => 'bian', 'rong', 'ceng', 'can', 'ding', NULL, NULL, NULL, NULL, 'di', 'tong', 'ta', 'xing', 'song', 'duo', 'xi',
|
||||
0xE0 => 'tao', NULL, 'ti', 'shan', 'jian', 'zhi', 'wei', 'yin', NULL, NULL, 'huan', 'zhong', 'qi', 'zong', NULL, 'xie',
|
||||
0xF0 => 'xie', 'ze', 'wei', NULL, NULL, 'ta', 'zhan', 'ning', NULL, NULL, NULL, 'yi', 'ren', 'shu', 'cha', 'zhuo',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x39.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x39.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => NULL, 'mian', 'ji', 'fang', 'pei', 'ai', 'fan', 'ao', 'qin', 'qia', 'xiao', 'fen', 'gan', 'qiao', 'ge', 'tong',
|
||||
0x10 => 'chan', 'you', 'gao', 'ben', 'fu', 'chu', 'zhu', NULL, 'zhou', NULL, 'hang', 'nin', 'jue', 'chong', 'cha', 'kong',
|
||||
0x20 => 'lie', 'li', 'yu', NULL, 'yu', 'hai', 'li', 'hou', 'gong', 'ke', 'yuan', 'de', 'hui', NULL, 'guang', 'jiong',
|
||||
0x30 => 'zuo', 'fu', 'qie', 'bei', 'che', 'ci', 'mang', 'han', 'xi', 'qiu', 'huang', NULL, NULL, 'chou', 'san', 'yan',
|
||||
0x40 => 'zhi', 'de', 'te', 'men', 'ling', 'shou', 'tui', 'can', 'die', 'che', 'peng', 'yi', 'ju', 'ji', 'lai', 'tian',
|
||||
0x50 => 'yuan', NULL, 'cai', 'qi', 'yu', 'lian', 'cong', NULL, NULL, NULL, 'yu', 'ji', 'wei', 'mi', 'sui', 'xie',
|
||||
0x60 => 'xu', 'chi', 'qiu', 'hui', NULL, 'yu', 'qie', 'shun', 'shui', 'duo', 'lou', NULL, 'pang', 'tai', 'zhou', 'yin',
|
||||
0x70 => 'sao', 'fei', 'chen', 'yuan', 'yi', 'hun', 'se', 'ye', 'min', 'fen', 'he', NULL, 'yin', 'ce', 'ni', 'ao',
|
||||
0x80 => 'feng', 'lian', 'chang', 'chan', 'ma', 'die', 'hu', 'lu', NULL, 'yi', 'hua', 'zha', 'hu', 'e', 'huo', 'sun',
|
||||
0x90 => 'ni', 'xian', 'li', 'xian', 'yan', 'long', 'men', 'jin', 'ji', NULL, 'bian', 'yu', 'huo', 'miao', 'chou', 'mai',
|
||||
0xA0 => NULL, 'le', 'jie', 'wei', 'yi', 'xuan', 'xi', 'can', 'lan', 'yin', 'xie', 'za', 'luo', 'ling', 'qian', 'huo',
|
||||
0xB0 => 'jian', 'wo', NULL, NULL, 'ge', 'zhu', 'die', 'yong', 'ji', 'yang', 'ru', 'xi', 'shuang', 'yu', 'yi', 'qian',
|
||||
0xC0 => 'ji', 'qu', 'tian', 'shou', 'qian', 'mu', 'jin', 'mao', 'yin', 'gai', 'po', 'xuan', 'mao', 'fang', 'ya', 'gang',
|
||||
0xD0 => 'song', 'hui', 'yu', 'gua', 'guai', 'liu', 'e', 'zi', 'zi', 'bi', 'wa', NULL, 'lie', NULL, NULL, 'kuai',
|
||||
0xE0 => NULL, 'hai', 'yin', 'zhu', 'chong', 'xian', 'xuan', NULL, 'qiu', 'pei', 'gui', 'er', 'gong', 'qiong', 'hu', 'lao',
|
||||
0xF0 => 'li', 'chen', 'san', 'zhuo', 'wo', 'pou', 'keng', 'tun', 'peng', 'te', 'ta', 'zhuo', 'biao', 'gu', 'hu', NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x3a.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x3a.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'bing', 'zhi', 'dong', 'dui', 'zhou', 'nei', 'lin', 'po', 'ji', 'min', 'wei', 'che', 'gou', 'bang', 'ru', 'tan',
|
||||
0x10 => 'bu', 'zong', 'kui', 'lao', 'han', 'ying', 'zhi', 'jie', 'xing', 'xie', 'xun', 'shan', 'qian', 'xie', 'su', 'hai',
|
||||
0x20 => 'mi', 'hun', 'pi', NULL, 'hui', 'na', 'song', 'ben', 'chou', 'jie', 'huang', 'lan', NULL, 'hu', 'dou', 'huo',
|
||||
0x30 => 'gun', 'yao', 'ce', 'gui', 'jian', 'jian', 'dao', 'jin', 'ma', 'hui', 'mian', 'can', 'lue', 'pi', 'yang', 'ju',
|
||||
0x40 => 'ju', 'que', NULL, 'qian', 'shai', NULL, 'jiu', 'huo', 'yun', 'da', 'xuan', 'xiao', 'fei', 'ce', 'ye', NULL,
|
||||
0x50 => 'den', NULL, 'qin', 'hui', 'tun', NULL, 'qiang', 'xi', 'ni', 'sai', 'meng', 'tuan', 'lan', 'hao', 'ci', 'zhai',
|
||||
0x60 => 'ao', 'luo', 'mie', NULL, 'fu', NULL, 'xie', 'bo', 'hui', 'qing', 'xie', NULL, NULL, 'bo', 'qian', 'po',
|
||||
0x70 => 'jiao', 'jue', 'kun', 'song', 'ju', 'e', 'nie', 'qian', 'die', 'die', NULL, 'qi', 'zhi', 'qi', 'zhui', 'ku',
|
||||
0x80 => 'yu', 'qin', 'ku', 'he', 'fu', NULL, 'di', 'xian', 'gui', 'he', 'qun', 'han', 'tong', 'bo', 'shan', 'bi',
|
||||
0x90 => 'lu', 'ye', 'ni', 'chuai', 'san', 'diao', 'lu', 'tou', 'lian', 'ke', 'san', 'zhen', 'chuai', 'lian', 'mao', NULL,
|
||||
0xA0 => 'qian', 'kai', 'shao', 'xiao', 'bi', 'zha', 'yin', 'xi', 'shan', 'su', 'sa', 'rui', 'chuo', 'lu', 'ling', 'cha',
|
||||
0xB0 => NULL, 'huan', NULL, NULL, 'jia', 'ban', 'hu', 'dou', NULL, 'lou', 'ju', 'juan', 'ke', 'suo', 'luo', 'zhe',
|
||||
0xC0 => 'ding', 'duan', 'zhu', 'yan', 'pang', 'cha', NULL, NULL, NULL, NULL, 'yi', NULL, NULL, 'you', 'hui', 'yao',
|
||||
0xD0 => 'yao', 'zhi', 'gong', 'qi', 'gen', NULL, NULL, 'hou', 'mi', 'fu', 'hu', 'guang', 'tan', 'di', NULL, 'yan',
|
||||
0xE0 => NULL, NULL, 'qu', NULL, 'chang', 'ming', 'tao', 'bao', 'an', NULL, NULL, 'xian', NULL, NULL, NULL, 'mao',
|
||||
0xF0 => 'lang', 'nan', 'bei', 'chen', NULL, 'fei', 'zhou', 'ji', 'jie', 'shu', NULL, 'kun', 'die', 'lu', NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x3b.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x3b.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => NULL, NULL, 'yu', 'tai', 'chan', 'man', 'min', 'huan', 'wen', 'nuan', 'huan', 'hou', 'jing', 'bo', 'xian', 'li',
|
||||
0x10 => 'jin', NULL, 'mang', 'piao', 'hao', 'yang', NULL, 'xian', 'su', 'wei', 'che', 'xi', 'jin', 'ceng', 'he', 'fen',
|
||||
0x20 => 'shai', 'ling', NULL, 'dui', 'qi', 'pu', 'yue', 'bo', NULL, 'hui', 'die', 'yan', 'ju', 'jiao', 'nan', 'lie',
|
||||
0x30 => 'yu', 'ti', 'tian', 'wu', 'hong', 'xiao', 'hao', NULL, 'tiao', 'zheng', NULL, 'huang', 'fu', NULL, NULL, 'tun',
|
||||
0x40 => NULL, 'reng', 'jiao', NULL, 'xin', NULL, NULL, 'yuan', 'jue', 'hua', NULL, 'bang', 'mou', NULL, 'gang', 'wei',
|
||||
0x50 => NULL, 'mei', 'si', 'bian', 'lu', 'qu', NULL, NULL, 'ge', 'zhe', 'lu', 'pai', 'rong', 'qiu', 'lie', 'gong',
|
||||
0x60 => 'xian', 'xi', 'xin', NULL, 'niao', NULL, NULL, NULL, 'xie', 'lie', 'fu', 'cuo', 'zhuo', 'ba', 'zuo', 'zhe',
|
||||
0x70 => 'zui', 'he', 'ji', NULL, 'jian', NULL, NULL, NULL, 'tu', 'xian', 'yan', 'tang', 'ta', 'di', 'jue', 'ang',
|
||||
0x80 => 'han', 'xiao', 'ju', 'wei', 'bang', 'zhui', 'nie', 'tian', 'nai', NULL, NULL, 'you', 'mian', NULL, NULL, 'nai',
|
||||
0x90 => 'sheng', 'cha', 'yan', 'gen', 'chong', 'ruan', 'jia', 'qin', 'mao', 'e', 'li', 'chi', 'zang', 'he', 'jie', 'nian',
|
||||
0xA0 => NULL, 'guan', 'hou', 'gai', NULL, 'ben', 'suo', 'wu', 'ji', 'xi', 'qiong', 'he', 'weng', 'xian', 'jie', 'hun',
|
||||
0xB0 => 'pi', 'shen', 'chou', 'zhen', NULL, 'zhan', 'shuo', 'ji', 'song', 'zhi', 'ben', NULL, NULL, NULL, 'lang', 'bi',
|
||||
0xC0 => 'xuan', 'pei', 'dai', NULL, 'zhi', 'pi', 'chan', 'bi', 'su', 'huo', 'hen', 'jiong', 'chuan', 'jiang', 'nen', 'gu',
|
||||
0xD0 => 'fang', NULL, NULL, 'ta', 'cui', 'xi', 'de', 'xian', 'kuan', 'zhe', 'ta', 'hu', 'cui', 'lu', 'juan', 'lu',
|
||||
0xE0 => 'qian', 'pao', 'zhen', NULL, 'li', 'cao', 'qi', NULL, NULL, 'ti', 'ling', 'qu', 'lian', 'lu', 'shu', 'gong',
|
||||
0xF0 => 'zhe', 'pao', 'jin', 'qing', NULL, NULL, 'zong', 'pu', 'jin', 'biao', 'jian', 'gun', NULL, NULL, 'zao', 'lie',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x3c.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x3c.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'li', 'luo', 'shen', 'mian', 'jian', 'di', 'bei', NULL, 'lian', NULL, 'xian', 'pin', 'que', 'long', 'zui', NULL,
|
||||
0x10 => 'jue', 'shan', 'xue', NULL, 'xie', NULL, 'lan', 'qi', 'yi', 'nuo', 'li', 'yue', NULL, 'yi', 'chi', 'ji',
|
||||
0x20 => 'hang', 'xie', 'keng', 'zi', 'he', 'xi', 'qu', 'hai', 'xia', 'hai', 'gui', 'chan', 'xun', 'xu', 'shen', 'kou',
|
||||
0x30 => 'xia', 'sha', 'yu', 'ya', 'pou', 'zu', 'you', 'zi', 'lian', 'xian', 'xia', 'yi', 'sha', 'yan', 'jiao', 'xi',
|
||||
0x40 => 'chi', 'shi', 'kang', 'yin', 'hei', 'yi', 'xi', 'se', 'jin', 'ye', 'you', 'que', 'ye', 'luan', 'kun', 'zheng',
|
||||
0x50 => NULL, NULL, NULL, NULL, 'xie', NULL, 'cui', 'xiu', 'an', 'xiu', 'can', 'chuan', 'zha', NULL, 'yi', 'pi',
|
||||
0x60 => 'ku', 'sheng', 'lang', 'tui', 'xi', 'ling', 'qi', 'wo', 'lian', 'du', 'men', 'lan', 'wei', 'duan', 'kuai', 'ai',
|
||||
0x70 => 'zai', 'hui', 'yi', 'mo', 'zi', 'fen', 'peng', NULL, 'bi', 'li', 'lu', 'luo', 'hai', 'zhen', 'gai', 'que',
|
||||
0x80 => 'zhen', 'kong', 'cheng', 'jiu', 'jue', 'ji', 'ling', NULL, 'shao', 'que', 'rui', 'chuo', 'neng', 'zhi', 'lou', 'pao',
|
||||
0x90 => NULL, NULL, 'bao', 'rong', 'xian', 'lei', 'xiao', 'fu', 'qu', NULL, 'sha', 'zhi', 'tan', 'rong', 'su', 'ying',
|
||||
0xA0 => 'mao', 'nai', 'bian', NULL, 'shuai', 'tang', 'han', 'sao', 'rong', NULL, 'deng', 'pu', 'jiao', 'tan', NULL, 'ran',
|
||||
0xB0 => 'ning', 'lie', 'die', 'die', 'zhong', NULL, 'lu', 'dan', 'xi', 'gui', 'ji', 'ni', 'yi', 'nian', 'yu', 'wang',
|
||||
0xC0 => 'guo', 'ze', 'yan', 'cui', 'xian', 'jiao', 'tou', 'fu', 'pei', NULL, 'you', 'qiu', 'ya', 'bu', 'bian', 'shi',
|
||||
0xD0 => 'zha', 'yi', 'bian', NULL, 'dui', 'lan', 'yi', 'chai', 'chong', 'xuan', 'xu', 'yu', 'xiu', NULL, NULL, NULL,
|
||||
0xE0 => 'ta', 'guo', NULL, NULL, NULL, 'long', 'xie', 'che', 'jian', 'tan', 'pi', 'zan', 'xuan', 'xian', 'niao', NULL,
|
||||
0xF0 => NULL, NULL, NULL, NULL, 'mi', 'ji', 'nou', 'hu', 'hua', 'wang', 'you', 'ze', 'bi', 'mi', 'qiang', 'xie',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x3d.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x3d.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'fan', 'yi', 'tan', 'lei', 'yong', NULL, 'jin', 'she', 'yin', 'ji', NULL, 'su', NULL, NULL, NULL, 'wang',
|
||||
0x10 => 'mian', 'su', 'yi', 'shai', 'xi', 'ji', 'luo', 'you', 'mao', 'zha', 'sui', 'zhi', 'bian', 'li', NULL, NULL,
|
||||
0x20 => NULL, NULL, NULL, NULL, NULL, 'qiao', 'guan', 'xi', 'zhen', 'yong', 'nie', 'jun', 'xie', 'yao', 'xie', 'zhi',
|
||||
0x30 => 'neng', NULL, 'si', 'long', 'chen', 'mi', 'que', 'dan', 'shan', NULL, NULL, NULL, 'su', 'xie', 'bo', 'ding',
|
||||
0x40 => 'zu', NULL, 'shu', 'she', 'han', 'tan', 'gao', NULL, NULL, NULL, 'na', 'mi', 'xun', 'men', 'jian', 'cui',
|
||||
0x50 => 'jue', 'he', 'fei', 'shi', 'che', 'shen', 'nu', 'ping', 'man', NULL, NULL, NULL, NULL, 'yi', 'chou', NULL,
|
||||
0x60 => 'ku', 'bao', 'lei', 'ke', 'sha', 'bi', 'sui', 'ge', 'pi', 'yi', 'xian', 'ni', 'ying', 'zhu', 'chun', 'feng',
|
||||
0x70 => 'xu', 'piao', 'wu', 'liao', 'cang', 'zou', 'zuo', 'bian', 'yao', 'huan', 'pai', 'xiu', NULL, 'lei', 'qing', 'xiao',
|
||||
0x80 => 'jiao', 'guo', NULL, NULL, 'yan', 'xue', 'zhu', 'heng', 'ying', 'xi', NULL, NULL, 'lian', 'xian', 'huan', 'yin',
|
||||
0x90 => NULL, 'lian', 'shan', 'cang', 'bei', 'jian', 'shu', 'fan', 'dian', NULL, 'ba', 'yu', NULL, NULL, 'nang', 'lei',
|
||||
0xA0 => 'yi', 'dai', NULL, 'chan', 'chao', 'gan', 'jin', 'nen', NULL, NULL, NULL, 'liao', 'mo', 'you', NULL, 'liu',
|
||||
0xB0 => 'han', NULL, 'yong', 'jin', 'chi', 'ren', 'nong', NULL, NULL, 'hong', 'tian', NULL, 'ai', 'gua', 'biao', 'bo',
|
||||
0xC0 => 'qiong', NULL, 'shu', 'chui', 'hui', 'chao', 'fu', 'hui', 'e', 'wei', 'fen', 'tan', NULL, 'lun', 'he', 'yong',
|
||||
0xD0 => 'hui', NULL, 'yu', 'zong', 'yan', 'qiu', 'zhao', 'jiong', 'tai', NULL, NULL, NULL, NULL, NULL, NULL, 'tui',
|
||||
0xE0 => 'lin', 'jiong', 'zha', 'xing', 'hu', NULL, 'xu', NULL, NULL, NULL, 'cui', 'qing', 'mo', NULL, 'zao', 'beng',
|
||||
0xF0 => 'chi', NULL, NULL, 'yan', 'ge', 'mo', 'bei', 'juan', 'die', 'zhao', NULL, 'wu', 'yan', NULL, 'jue', 'xian',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x3e.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x3e.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'tai', 'han', NULL, 'dian', 'ji', 'jie', NULL, 'zuan', NULL, 'xie', 'lai', 'fan', 'huo', 'xi', 'nie', 'mi',
|
||||
0x10 => 'ran', 'cuan', 'yin', 'mi', NULL, 'jue', 'qu', 'tong', 'wan', 'zhe', 'li', 'shao', 'kong', 'xian', 'zhe', 'zhi',
|
||||
0x20 => 'tiao', 'shu', 'bei', 'ye', 'pian', 'chan', 'hu', 'ken', 'jiu', 'an', 'chun', 'qian', 'bei', 'ba', 'fen', 'ke',
|
||||
0x30 => 'tuo', 'tuo', 'zuo', 'ling', NULL, 'gui', 'yan', 'shi', 'hou', 'lie', 'sha', 'si', NULL, 'bei', 'ren', 'du',
|
||||
0x40 => 'bo', 'liang', 'qian', 'fei', 'ji', 'zong', 'hui', 'he', 'li', 'yuan', 'yue', 'xiu', 'chan', 'di', 'lei', 'jin',
|
||||
0x50 => 'chong', 'si', 'pu', 'yao', 'jiang', 'huan', 'huan', 'tao', 'ru', 'weng', 'ying', 'rao', 'yin', 'shi', 'yin', 'jue',
|
||||
0x60 => 'tun', 'xuan', 'jia', 'zhong', 'qie', 'zhu', 'diao', NULL, 'you', NULL, NULL, 'yi', 'shi', 'yi', 'mo', NULL,
|
||||
0x70 => NULL, 'que', 'xiao', 'wu', 'geng', 'ying', 'ting', 'shi', 'ni', 'geng', 'ta', 'wo', 'ju', 'chan', 'piao', 'zhuo',
|
||||
0x80 => 'hu', 'nao', 'yan', 'gou', 'yu', 'hou', NULL, 'si', 'chi', 'hu', 'yang', 'weng', 'xian', 'pin', 'rong', 'lou',
|
||||
0x90 => 'lao', 'shan', 'xiao', 'ze', 'hai', 'fan', 'han', 'chan', 'zhan', NULL, 'ta', 'zhu', 'nong', 'han', 'yu', 'zhuo',
|
||||
0xA0 => 'you', 'li', 'huo', 'xi', 'xian', 'chan', 'lian', NULL, 'si', 'jiu', 'pu', 'qiu', 'gong', 'zi', 'yu', NULL,
|
||||
0xB0 => NULL, 'reng', 'niu', 'mei', 'ba', 'jiu', NULL, 'xu', 'ping', 'bian', 'mao', NULL, NULL, NULL, NULL, 'yi',
|
||||
0xC0 => 'yu', NULL, 'ping', 'qu', 'bao', 'hui', NULL, NULL, NULL, 'bu', 'mang', 'la', 'tu', 'wu', 'li', 'ling',
|
||||
0xD0 => NULL, 'ji', 'jun', 'zou', 'duo', 'jue', 'dai', 'bei', NULL, NULL, NULL, NULL, NULL, 'la', 'bin', 'sui',
|
||||
0xE0 => 'tu', 'xue', NULL, NULL, NULL, NULL, NULL, 'duo', NULL, NULL, 'sui', 'bi', 'tu', 'se', 'can', 'tu',
|
||||
0xF0 => 'mian', 'jin', 'lu', NULL, NULL, 'zhan', 'bi', 'ji', 'zen', 'xuan', 'li', NULL, NULL, 'sui', 'yong', 'shu',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x3f.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x3f.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => NULL, NULL, 'e', NULL, NULL, NULL, NULL, 'qiong', 'luo', 'zhen', 'tun', 'gu', 'yu', 'lei', 'bo', 'nei',
|
||||
0x10 => 'pian', 'lian', 'tang', 'lian', 'wen', 'dang', 'li', 'ting', 'wa', 'zhou', 'gang', 'xing', 'ang', 'fan', 'peng', 'bo',
|
||||
0x20 => 'tuo', 'shu', 'yi', 'bo', 'qie', 'tou', 'gong', 'tong', 'han', 'cheng', 'jie', 'huan', 'xing', 'dian', 'chai', 'dong',
|
||||
0x30 => 'pi', 'ruan', 'lie', 'sheng', 'ou', 'di', 'yu', 'chuan', 'rong', 'kang', 'tang', 'cong', 'piao', 'chuang', 'lu', 'tong',
|
||||
0x40 => 'zheng', 'li', 'sa', 'pan', 'si', NULL, 'dang', 'hu', 'yi', 'xian', 'xie', 'luo', 'liu', NULL, 'tan', 'gan',
|
||||
0x50 => NULL, 'tan', NULL, NULL, NULL, 'you', 'nan', NULL, 'gang', 'jun', 'chi', 'gou', 'wan', 'li', 'liu', 'lie',
|
||||
0x60 => 'xia', 'bei', 'an', 'yu', 'ju', 'rou', 'xun', 'zi', 'cuo', 'can', 'zeng', 'yong', 'fu', 'ruan', NULL, 'xi',
|
||||
0x70 => 'shu', 'jiao', 'jiao', 'xu', 'zhang', NULL, NULL, 'shui', 'chen', 'fan', 'ji', 'zhi', NULL, 'gu', 'wu', NULL,
|
||||
0x80 => 'qie', 'shu', 'hai', 'tuo', 'du', 'zi', 'ran', 'mu', 'fu', 'ling', 'ji', 'xiu', 'xuan', 'nai', 'ya', 'jie',
|
||||
0x90 => 'li', 'da', 'ru', 'yuan', 'lu', 'shen', 'li', 'liang', 'geng', 'xin', 'xie', 'qin', 'qie', 'che', 'you', 'bu',
|
||||
0xA0 => 'kuang', 'que', 'ai', 'qin', 'qiang', 'chu', 'pei', 'kuo', 'yi', 'guai', 'sheng', 'pian', NULL, 'zhou', 'huang', 'hui',
|
||||
0xB0 => 'hu', 'bei', NULL, NULL, 'zha', 'ji', 'gu', 'xi', 'gao', 'chai', 'ma', 'zhu', 'tui', 'zhui', 'xian', 'lang',
|
||||
0xC0 => NULL, NULL, NULL, 'zhi', 'ai', 'xian', 'guo', 'xi', NULL, 'tui', 'can', 'sao', 'xian', 'jie', 'fen', 'qun',
|
||||
0xD0 => NULL, 'yao', 'dao', 'jia', 'lei', 'yan', 'lu', 'tui', 'ying', 'pi', 'luo', 'li', 'bie', NULL, 'mao', 'bai',
|
||||
0xE0 => 'huang', NULL, 'yao', 'he', 'chun', 'he', 'ning', 'chou', 'li', 'tang', 'huan', 'bi', 'ba', 'che', 'yang', 'da',
|
||||
0xF0 => 'ao', 'xue', NULL, 'zi', 'da', 'ran', 'bang', 'cuo', 'wan', 'ta', 'bao', 'gan', 'yan', 'xi', 'zhu', 'ya',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x40.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x40.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'fan', 'you', 'an', 'tui', 'meng', 'she', 'jin', 'gu', 'ji', 'qiao', 'jiao', 'yan', 'xi', 'kan', 'mian', 'xuan',
|
||||
0x10 => 'shan', 'wo', 'qian', 'huan', 'ren', 'zhen', 'tian', 'jue', 'xie', 'qi', 'ang', 'mei', 'gu', NULL, 'tao', 'fan',
|
||||
0x20 => 'ju', 'chan', 'shun', 'bi', 'mao', 'shuo', 'gu', 'hong', 'hua', 'luo', 'hang', 'jia', 'quan', 'gai', 'huang', 'bu',
|
||||
0x30 => 'gu', 'feng', 'mu', 'ai', 'ying', 'shun', 'liang', 'jie', 'chi', 'jie', 'chou', 'ping', 'chen', 'yan', 'du', 'di',
|
||||
0x40 => NULL, 'liang', 'xian', 'biao', 'xing', 'meng', 'ye', 'mi', 'qi', 'qi', 'wo', 'xie', 'yu', 'qia', 'cheng', 'yao',
|
||||
0x50 => 'ying', 'yang', 'ji', 'zong', 'xuan', 'min', 'lou', 'kai', 'yao', 'yan', 'sun', 'gui', 'huang', 'ying', 'sheng', 'cha',
|
||||
0x60 => 'lian', NULL, 'xuan', 'chuan', 'che', 'ni', 'qu', 'miao', 'huo', 'yu', 'zhan', 'hu', 'ceng', 'biao', 'qian', 'xi',
|
||||
0x70 => 'jiang', 'kou', 'mai', 'mang', 'zhan', 'bian', 'ji', 'jue', 'nang', 'bi', 'shi', 'shuo', 'mo', 'lie', 'mie', 'mo',
|
||||
0x80 => 'xi', 'chan', 'qu', 'jiao', 'huo', 'xian', 'xu', 'niu', 'tong', 'hou', 'yu', NULL, 'chong', 'bo', 'zuan', 'diao',
|
||||
0x90 => 'zhuo', 'ji', 'qia', NULL, 'xing', 'hui', 'shi', 'ku', NULL, 'dui', 'yao', 'yu', 'bang', 'jie', 'zhe', 'jia',
|
||||
0xA0 => 'shi', 'di', 'dong', 'ci', 'fu', 'min', 'zhen', 'zhen', NULL, 'yan', 'qiao', 'hang', 'gong', 'qiao', 'lue', 'guai',
|
||||
0xB0 => 'la', 'rui', 'fa', 'cuo', 'yan', 'gong', 'jie', 'guai', 'guo', 'suo', 'wo', 'zheng', 'nie', 'diao', 'lai', 'ta',
|
||||
0xC0 => 'cui', 'ya', 'gun', NULL, NULL, 'di', NULL, 'mian', 'jie', 'min', 'ju', 'yu', 'zhen', 'zhao', 'zha', 'xing',
|
||||
0xD0 => NULL, 'ban', 'he', 'gou', 'hong', 'lao', 'wu', 'bo', 'keng', 'lu', 'cu', 'lian', 'yi', 'qiao', 'shu', NULL,
|
||||
0xE0 => 'xuan', 'jin', 'qin', 'hui', 'su', 'chuang', 'dun', 'long', NULL, 'nao', 'tan', 'dan', 'wei', 'gan', 'da', 'li',
|
||||
0xF0 => 'ca', 'xian', 'pan', 'la', 'zhu', 'niao', 'huai', 'ying', 'xian', 'lan', 'mo', 'ba', NULL, 'gui', 'bi', 'fu',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x41.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x41.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'huo', 'yi', 'liu', NULL, 'yin', 'juan', 'huo', 'cheng', 'dou', 'e', NULL, 'yan', 'zhui', 'zha', 'qi', 'yu',
|
||||
0x10 => 'quan', 'huo', 'nie', 'huang', 'ju', 'she', NULL, NULL, 'peng', 'ming', 'cao', 'lou', 'li', 'chuang', NULL, 'cui',
|
||||
0x20 => 'shan', 'dan', 'qi', NULL, 'lai', 'ling', 'liao', 'reng', 'yu', 'yi', 'diao', 'qi', 'yi', 'nian', 'fu', 'jian',
|
||||
0x30 => 'ya', 'fang', 'rui', 'xian', NULL, NULL, 'bi', 'shi', 'po', 'nian', 'zhi', 'tao', 'tian', 'tian', 'ru', 'yi',
|
||||
0x40 => 'lie', 'an', 'he', 'qiong', 'li', 'gui', 'zi', 'su', 'yuan', 'ya', 'cha', 'wan', 'juan', 'ting', 'you', 'hui',
|
||||
0x50 => 'jian', 'rui', 'mang', 'ju', 'zi', 'ju', 'an', 'sui', 'lai', 'hun', 'quan', 'chang', 'duo', 'kong', 'ne', 'can',
|
||||
0x60 => 'ti', 'xu', 'jiu', 'huang', 'qi', 'jie', 'mao', 'yan', NULL, 'zhi', 'tui', NULL, 'ai', 'pang', 'cang', 'tang',
|
||||
0x70 => 'en', 'hun', 'qi', 'chu', 'suo', 'zhuo', 'nou', 'tu', 'shen', 'lou', 'biao', 'li', 'man', 'xin', 'cen', 'huang',
|
||||
0x80 => 'mei', 'gao', 'lian', 'dao', 'zhan', 'zi', NULL, NULL, 'zhi', 'ba', 'cui', 'qiu', NULL, 'long', 'xian', 'fei',
|
||||
0x90 => 'guo', 'cheng', 'jiu', 'e', 'chong', 'yue', 'hong', 'yao', 'ya', 'yao', 'tong', 'zha', 'you', 'xue', 'yao', 'ke',
|
||||
0xA0 => 'huan', 'lang', 'yue', 'chen', NULL, NULL, 'shen', NULL, 'ning', 'ming', 'hong', 'chuang', 'yun', 'xuan', 'jin', 'zhuo',
|
||||
0xB0 => 'yu', 'tan', 'kang', 'qiong', NULL, 'cheng', 'jiu', 'xue', 'zheng', 'chong', 'pan', 'qiao', NULL, 'qu', 'lan', 'yi',
|
||||
0xC0 => 'rong', 'si', 'qian', 'si', NULL, 'fa', NULL, 'meng', 'hua', NULL, NULL, 'hai', 'qiao', 'chu', 'que', 'dui',
|
||||
0xD0 => 'li', 'ba', 'jie', 'xu', 'luo', NULL, 'yun', 'zhong', 'hu', 'yin', NULL, 'zhi', 'qian', NULL, 'gan', 'jian',
|
||||
0xE0 => 'zhu', 'zhu', 'ku', 'nie', 'rui', 'ze', 'ang', 'zhi', 'gong', 'yi', 'chi', 'ji', 'zhu', 'lao', 'ren', 'rong',
|
||||
0xF0 => 'zheng', 'na', 'ce', NULL, NULL, 'yi', 'jue', 'bie', 'cheng', 'jun', 'dou', 'wei', 'yi', 'zhe', 'yan', NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x42.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x42.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'san', 'lun', 'ping', 'zhao', 'han', 'yu', 'dai', 'zhao', 'fei', 'sha', 'ling', 'ta', 'qu', 'mang', 'ye', 'bao',
|
||||
0x10 => 'gui', 'gua', 'nan', 'ge', NULL, 'shi', 'ke', 'suo', 'ci', 'zhou', 'tai', 'kuai', 'qin', 'xu', 'du', 'ce',
|
||||
0x20 => 'huan', 'cong', 'sai', 'zheng', 'qian', 'jin', 'zong', 'wei', NULL, NULL, 'xi', 'na', 'pu', 'sou', 'ju', 'zhen',
|
||||
0x30 => 'shao', 'tao', 'ban', 'ta', 'qian', 'weng', 'rong', 'luo', 'hu', 'sou', 'zhong', 'pu', 'mie', 'jin', 'shao', 'mi',
|
||||
0x40 => 'shu', 'ling', 'lei', 'jiang', 'leng', 'zhi', 'diao', NULL, 'san', 'gu', 'fan', 'mei', 'sui', 'jian', 'tang', 'xie',
|
||||
0x50 => 'ku', 'wu', 'fan', 'luo', 'can', 'ceng', 'ling', 'yi', 'cong', 'yun', 'meng', 'yu', 'zhi', 'yi', 'dan', 'huo',
|
||||
0x60 => 'wei', 'tan', 'se', 'xie', 'sou', 'song', 'qian', 'liu', 'yi', NULL, 'lei', 'li', 'fei', 'lie', 'lin', 'xian',
|
||||
0x70 => 'xiao', 'ou', 'mi', 'xian', 'rang', 'zhuan', 'shuang', 'yan', 'bian', 'ling', 'hong', 'qi', 'liao', 'ban', 'bi', 'hu',
|
||||
0x80 => 'hu', NULL, 'ce', 'pei', 'qiong', 'ming', 'jiu', 'bu', 'mei', 'san', 'wei', NULL, NULL, 'li', 'quan', NULL,
|
||||
0x90 => 'hun', 'xiang', NULL, 'shi', 'ying', NULL, 'nan', 'huang', 'jiu', 'yan', NULL, 'sa', 'tuan', 'xie', 'zhe', 'men',
|
||||
0xA0 => 'xi', 'man', NULL, 'huang', 'tan', 'xiao', 'ye', 'bi', 'luo', 'fan', 'li', 'cui', 'chua', 'dao', 'di', 'kuang',
|
||||
0xB0 => 'chu', 'xian', 'chan', 'mi', 'qian', 'qiu', 'zhen', NULL, NULL, NULL, 'hu', 'gan', 'chi', 'guai', 'mu', 'bo',
|
||||
0xC0 => 'hua', 'geng', 'yao', 'mao', 'wang', NULL, NULL, NULL, 'ru', 'xue', 'zheng', 'min', 'jiang', NULL, 'zhan', 'zuo',
|
||||
0xD0 => 'yue', 'lie', NULL, 'zhou', 'bi', 'ren', 'yu', NULL, 'chuo', 'er', 'yi', 'mi', 'qing', NULL, 'wang', 'ji',
|
||||
0xE0 => 'bu', NULL, 'bie', 'fan', 'yue', 'li', 'fan', 'qu', 'fu', 'er', 'e', 'zheng', 'tian', 'yu', 'jin', 'qi',
|
||||
0xF0 => 'ju', 'lai', 'che', 'bei', 'niu', 'yi', 'xu', 'mou', 'xun', 'fu', NULL, 'nin', 'ting', 'beng', 'zha', 'wei',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x43.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x43.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'ke', 'yao', 'ou', 'xiao', 'geng', 'tang', 'gui', 'hui', 'ta', NULL, 'yao', 'da', 'qi', 'jin', 'lue', 'mi',
|
||||
0x10 => 'mi', 'jian', 'lu', 'fan', 'ou', 'mi', 'jie', 'fu', 'bie', 'huang', 'su', 'yao', 'nie', 'jin', 'lian', 'bo',
|
||||
0x20 => 'jian', 'ti', 'ling', 'zuan', 'shi', 'yin', 'dao', 'chou', 'ca', 'mie', 'yan', 'lan', 'chong', 'jiao', 'shuang', 'quan',
|
||||
0x30 => 'nie', 'luo', NULL, 'shi', 'luo', 'zhu', NULL, 'chou', 'juan', 'jiong', 'er', 'yi', 'rui', 'cai', 'ren', 'fu',
|
||||
0x40 => 'lan', 'sui', 'yu', 'you', 'dian', 'ling', 'zhu', 'ta', 'ping', 'zhai', 'jiao', 'chui', 'bu', 'kou', 'cun', NULL,
|
||||
0x50 => 'han', 'han', 'mou', 'hu', 'gong', 'di', 'fu', 'xuan', 'mi', 'mei', 'lang', 'gu', 'zhao', 'ta', 'yu', 'zong',
|
||||
0x60 => 'li', 'lu', 'wu', 'lei', 'ji', 'li', 'li', NULL, 'po', 'yang', 'wa', 'tuo', 'peng', NULL, 'zhao', 'gui',
|
||||
0x70 => NULL, 'xu', 'nai', 'que', 'wei', 'zheng', 'dong', 'wei', 'bo', NULL, 'huan', 'xuan', 'zan', 'li', 'yan', 'huang',
|
||||
0x80 => 'xue', 'hu', 'bao', 'ran', 'xiao', 'po', 'liao', 'zhou', 'yi', 'xu', 'luo', 'kao', 'chu', NULL, 'na', 'han',
|
||||
0x90 => 'chao', 'lu', 'zhan', 'ta', 'fu', 'hong', 'zeng', 'qiao', 'su', 'pin', 'guan', NULL, 'hun', 'chu', NULL, 'er',
|
||||
0xA0 => 'er', 'ruan', 'qi', 'si', 'ju', NULL, 'yan', 'bang', 'ye', 'zi', 'ne', 'chuang', 'ba', 'cao', 'ti', 'han',
|
||||
0xB0 => 'zuo', 'ba', 'zhe', 'wa', 'geng', 'bi', 'er', 'zhu', 'wu', 'wen', 'zhi', 'zhou', 'lu', 'wen', 'gun', 'qiu',
|
||||
0xC0 => 'la', 'zai', 'sou', 'mian', 'di', 'qi', 'cao', 'piao', 'lian', 'shi', 'long', 'su', 'qi', 'yuan', 'feng', 'xu',
|
||||
0xD0 => 'jue', 'di', 'pian', 'guan', 'niu', 'ren', 'zhen', 'gai', 'pi', 'tan', 'chao', 'chun', 'he', 'zhuan', 'mo', 'bie',
|
||||
0xE0 => 'qi', 'shi', 'bi', 'jue', 'si', NULL, 'gua', 'na', 'hui', 'xi', 'er', 'xiu', 'mou', NULL, 'xi', 'zhi',
|
||||
0xF0 => 'run', 'ju', 'die', 'zhe', 'shao', 'meng', 'bi', 'han', 'yu', 'xian', 'pang', 'neng', 'can', 'bu', NULL, 'qi',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x44.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x44.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'ji', 'zhuo', 'lu', 'jun', 'xian', 'xi', 'cai', 'wen', 'zhi', 'zi', 'kun', 'cong', 'tian', 'chu', 'di', 'chun',
|
||||
0x10 => 'qiu', 'zhe', 'zha', 'rou', 'bin', 'ji', 'xi', 'zhu', 'jue', 'ge', 'ji', 'da', 'chen', 'suo', 'ruo', 'xiang',
|
||||
0x20 => 'huang', 'qi', 'zhu', 'sun', 'chai', 'weng', 'ke', 'kao', 'gu', 'gai', 'fan', 'cong', 'cao', 'zhi', 'chan', 'lei',
|
||||
0x30 => 'xiu', 'zhai', 'zhe', 'yu', 'gui', 'gong', 'zan', 'dan', 'huo', 'sou', 'tan', 'gu', 'xi', 'man', 'duo', 'ao',
|
||||
0x40 => 'pi', 'wu', 'ai', 'meng', 'pi', 'meng', 'yang', 'zhi', 'bo', 'ying', 'wei', 'rang', 'lan', 'yan', 'chan', 'quan',
|
||||
0x50 => 'zhen', 'pu', NULL, 'tai', 'fei', 'shu', NULL, 'dang', 'cuo', 'tan', 'tian', 'chi', 'ta', 'jia', 'shun', 'huang',
|
||||
0x60 => 'liao', NULL, NULL, 'chen', 'jin', 'e', 'gou', 'fu', 'duo', NULL, 'e', 'beng', 'tao', 'di', NULL, 'di',
|
||||
0x70 => 'bu', 'wan', 'zhao', 'lun', 'qi', 'mu', 'qian', NULL, 'zong', 'sou', NULL, 'you', 'zhou', 'ta', NULL, 'su',
|
||||
0x80 => 'bu', 'xi', 'jiang', 'cao', 'fu', 'teng', 'che', 'fu', 'fei', 'wu', 'xi', 'yang', 'ming', 'pang', 'mang', 'seng',
|
||||
0x90 => 'meng', 'cao', 'tiao', 'kai', 'bai', 'xiao', 'xin', 'qi', NULL, NULL, 'shao', 'huan', 'niu', 'xiao', 'chen', 'dan',
|
||||
0xA0 => 'feng', 'yin', 'ang', 'ran', 'ri', 'man', 'fan', 'qu', 'shi', 'he', 'bian', 'dai', 'mo', 'deng', NULL, NULL,
|
||||
0xB0 => 'kuang', NULL, 'cha', 'duo', 'you', 'hao', NULL, 'gua', 'xue', 'lei', 'jin', 'qi', 'qu', 'wang', 'yi', 'liao',
|
||||
0xC0 => NULL, NULL, 'yan', 'yi', 'yin', 'qi', 'zhe', 'xi', 'yi', 'ye', 'wu', 'zhi', 'zhi', 'han', 'chuo', 'fu',
|
||||
0xD0 => 'chun', 'ping', 'kuai', 'chou', NULL, 'tuo', 'qiong', 'cong', 'gao', 'kua', 'qu', 'qu', 'zhi', 'meng', 'li', 'zhou',
|
||||
0xE0 => 'ta', 'zhi', 'gu', 'liang', 'hu', 'la', 'dian', 'ci', 'ying', NULL, NULL, 'qi', NULL, 'cha', 'mao', 'du',
|
||||
0xF0 => 'yin', 'chai', 'rui', 'hen', 'ruan', 'fu', 'lai', 'xing', 'jian', 'yi', 'mei', NULL, 'mang', 'ji', 'suo', 'han',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x45.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x45.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => NULL, 'li', 'zi', 'zu', 'yao', 'ge', 'li', 'qi', 'gong', 'li', 'bing', 'suo', NULL, NULL, 'su', 'chou',
|
||||
0x10 => 'jian', 'xie', 'bei', 'xu', 'jing', 'pu', 'ling', 'xiang', 'zuo', 'diao', 'chun', 'qing', 'nan', 'zhai', 'lu', 'yi',
|
||||
0x20 => 'shao', 'yu', 'hua', 'li', 'pa', NULL, NULL, 'li', NULL, NULL, 'shuang', NULL, 'yi', 'ning', 'si', 'ku',
|
||||
0x30 => 'fu', 'yi', 'deng', 'ran', 'ce', NULL, 'ti', 'qin', 'biao', 'sui', 'wei', 'dun', 'se', 'ai', 'qi', 'zun',
|
||||
0x40 => 'kuan', 'fei', NULL, 'yin', NULL, 'sao', 'dou', 'hui', 'xie', 'ze', 'tan', 'tang', 'zhi', 'yi', 'fu', 'e',
|
||||
0x50 => NULL, 'jun', 'jia', 'cha', 'xian', 'man', NULL, 'bi', 'ling', 'jie', 'kui', 'jia', NULL, 'cheng', 'lang', 'xing',
|
||||
0x60 => 'fei', 'lu', 'zha', 'he', 'ji', 'ni', 'ying', 'xiao', 'teng', 'lao', 'ze', 'kui', NULL, 'qian', 'ju', 'piao',
|
||||
0x70 => 'fan', 'tou', 'lin', 'mi', 'zhuo', 'xie', 'hu', 'mi', 'jie', 'za', 'cong', 'li', 'ran', 'zhu', 'yin', 'han',
|
||||
0x80 => NULL, 'yi', 'luan', 'yue', 'ran', 'ling', 'niang', 'yu', 'nue', NULL, 'yi', 'nue', 'yi', 'qian', 'xia', 'chu',
|
||||
0x90 => 'yin', 'mi', 'xi', 'na', 'kan', 'zu', 'xia', 'yan', 'tu', 'ti', 'wu', 'suo', 'yin', 'chong', 'zhou', 'mang',
|
||||
0xA0 => 'yuan', 'nu', 'miao', 'zao', 'wan', 'li', 'qu', 'na', 'shi', 'bi', 'zi', 'bang', NULL, 'juan', 'xiang', 'kui',
|
||||
0xB0 => 'pai', 'kuang', 'xun', 'zha', 'yao', 'kun', 'hui', 'xi', 'e', 'yang', 'tiao', 'you', 'jue', 'li', NULL, 'li',
|
||||
0xC0 => 'cheng', 'ji', 'hu', 'zhan', 'fu', 'chang', 'guan', 'ju', 'meng', 'chang', 'tan', 'mou', 'xing', 'li', 'yan', 'sou',
|
||||
0xD0 => 'shi', 'yi', 'bing', 'cong', 'hou', 'wan', 'di', 'ji', 'ge', 'han', 'bo', 'xiu', 'liu', 'can', 'can', 'yi',
|
||||
0xE0 => 'xuan', 'yan', 'zao', 'han', 'yong', 'zong', NULL, 'kang', 'yu', 'qi', 'zhe', 'ma', NULL, NULL, 'shuang', 'jin',
|
||||
0xF0 => 'guan', 'pu', 'lin', NULL, 'ting', 'jiang', 'la', 'yi', 'yong', 'ci', 'yan', 'jie', 'xun', 'wei', 'xian', 'ning',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x46.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x46.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'fu', 'ge', NULL, 'mo', 'zhu', 'nai', 'xian', 'wen', 'li', 'can', 'mie', 'jian', 'ni', 'chai', 'wan', 'xu',
|
||||
0x10 => 'nu', 'mai', 'zui', 'kan', 'ka', 'hang', NULL, NULL, 'yu', 'wei', 'zhu', NULL, NULL, 'yi', NULL, 'diao',
|
||||
0x20 => 'fu', 'bi', 'zhu', 'zi', 'shu', 'xia', 'ni', NULL, 'jiao', 'xun', 'chong', 'nou', 'rong', 'zhi', 'sang', NULL,
|
||||
0x30 => 'shan', 'yu', NULL, 'jin', NULL, 'lu', 'han', 'bie', 'yi', 'zui', 'zhan', 'yu', 'wan', 'ni', 'guan', 'jue',
|
||||
0x40 => 'beng', 'can', NULL, 'duo', 'qi', 'yao', 'kui', 'ruan', 'hou', 'xun', 'xie', NULL, 'kui', NULL, 'xie', 'bo',
|
||||
0x50 => 'ke', 'cui', 'xu', 'bai', 'ou', 'zong', NULL, 'ti', 'chu', 'chi', 'niao', 'guan', 'feng', 'xie', 'deng', 'wei',
|
||||
0x60 => 'jue', 'kui', 'zeng', 'sa', 'duo', 'ling', 'meng', NULL, 'guo', 'meng', 'long', NULL, 'ying', NULL, 'guan', 'cu',
|
||||
0x70 => 'li', 'du', NULL, 'biao', NULL, 'xi', NULL, 'de', 'de', 'xian', 'lian', NULL, 'shao', 'xie', 'shi', 'wei',
|
||||
0x80 => NULL, NULL, 'he', 'you', 'lu', 'lai', 'ying', 'sheng', 'juan', 'qi', 'jian', 'yun', NULL, 'qi', NULL, 'lin',
|
||||
0x90 => 'ji', 'mai', 'chuang', 'nian', 'bin', 'li', 'ling', 'gang', 'cheng', 'xuan', 'xian', 'hu', 'bi', 'zu', 'dai', 'dai',
|
||||
0xA0 => 'hun', 'sai', 'che', 'ti', NULL, 'nuo', 'zhi', 'liu', 'fei', 'jiao', 'guan', 'xi', 'lin', 'xuan', 'reng', 'tao',
|
||||
0xB0 => 'pi', 'xin', 'shan', 'zhi', 'wa', 'tou', 'tian', 'yi', 'xie', 'pi', 'yao', 'yao', 'nu', 'hao', 'nin', 'yin',
|
||||
0xC0 => 'fan', 'nan', 'yao', 'wan', 'yuan', 'xia', 'zhou', 'yuan', 'shi', 'mian', 'xi', 'ji', 'tao', 'fei', 'xue', 'ni',
|
||||
0xD0 => 'ci', 'mi', 'bian', NULL, 'na', 'yu', 'e', 'zhi', 'ren', 'xu', 'lue', 'hui', 'xun', 'nao', 'han', 'jia',
|
||||
0xE0 => 'dou', 'hua', 'tu', 'ping', 'cu', 'xi', 'song', 'mi', 'xin', 'wu', 'qiong', 'zhang', 'tao', 'xing', 'jiu', 'ju',
|
||||
0xF0 => 'hun', 'ti', 'man', 'yan', 'ji', 'shou', 'lei', 'wan', 'che', 'can', 'jie', 'you', 'hui', 'zha', 'su', 'ge',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x47.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x47.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'nao', 'xi', NULL, 'dui', 'chi', 'wei', 'zhe', 'gun', 'chao', 'chi', 'zao', 'hui', 'luan', 'liao', 'lao', 'tuo',
|
||||
0x10 => 'hui', 'wu', 'ao', 'she', 'sui', 'mai', 'tan', 'xin', 'jing', 'an', 'ta', 'chan', 'wei', 'tuan', 'ji', 'chen',
|
||||
0x20 => 'che', 'yu', 'xian', 'xin', NULL, NULL, NULL, 'nao', NULL, 'yan', 'qiu', 'jiang', 'song', 'jun', 'liao', 'ju',
|
||||
0x30 => NULL, 'man', 'lie', NULL, 'chu', 'chi', 'xiang', 'qin', 'mei', 'shu', 'chai', 'chi', 'gu', 'yu', 'yin', NULL,
|
||||
0x40 => 'liu', 'lao', 'shu', 'zhe', 'shuang', 'hui', NULL, NULL, 'e', NULL, 'sha', 'zong', 'jue', 'jun', 'tuan', 'lou',
|
||||
0x50 => 'wei', 'chong', 'zhu', 'lie', NULL, 'zhe', 'zhao', NULL, 'yi', 'chu', 'ni', 'bo', 'suan', 'yi', 'hao', 'ya',
|
||||
0x60 => 'huan', 'man', 'man', 'qu', 'lao', 'hao', 'zhong', 'min', 'xian', 'zhen', 'shu', 'zuo', 'zhu', 'gou', 'xuan', 'yi',
|
||||
0x70 => 'zhi', 'xie', 'jin', 'can', NULL, 'bu', 'liang', 'zhi', 'ji', 'wan', 'guan', 'ju', 'jing', 'ai', 'fu', 'gui',
|
||||
0x80 => 'hou', 'yan', 'ruan', 'zhi', 'biao', 'yi', 'suo', 'die', 'gui', 'sheng', 'xun', 'chen', 'she', 'qing', NULL, NULL,
|
||||
0x90 => 'chun', 'hong', 'dong', 'cheng', 'wei', 'ru', 'shu', 'cai', 'ji', 'za', 'qi', 'yan', 'fu', 'yu', 'fu', 'po',
|
||||
0xA0 => 'zhi', 'tan', 'zuo', 'che', 'qu', 'you', 'he', 'hou', 'gui', 'e', 'jiang', 'yun', 'tou', 'cun', 'tu', 'fu',
|
||||
0xB0 => 'zuo', 'hu', NULL, 'bo', 'zhao', 'jue', 'tang', 'jue', 'fu', 'huang', 'chun', 'yong', 'chui', 'suo', 'chi', 'qian',
|
||||
0xC0 => 'cai', 'xiao', 'man', 'can', 'qi', 'jian', 'bi', 'ji', 'zhi', 'zhu', 'qu', 'zhan', 'ji', 'bian', NULL, 'li',
|
||||
0xD0 => 'li', 'yue', 'quan', 'cheng', 'fu', 'cha', 'tang', 'shi', 'hang', 'qie', 'qi', 'bo', 'na', 'tou', 'chu', 'cu',
|
||||
0xE0 => 'yue', 'zhi', 'chen', 'chu', 'bi', 'meng', 'ba', 'tian', 'min', 'lie', 'feng', 'cheng', 'qiu', 'tiao', 'fu', 'kuo',
|
||||
0xF0 => 'jian', NULL, NULL, NULL, 'zhen', 'qiu', 'zuo', 'chi', 'kui', 'lie', 'bei', 'du', 'wu', NULL, 'zhuo', 'lu',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x48.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x48.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'tang', NULL, 'chu', 'liang', 'tian', 'kun', 'chang', 'jue', 'tu', 'huan', 'fei', 'bi', NULL, 'xia', 'wo', 'ji',
|
||||
0x10 => 'qu', 'kui', 'hu', 'qiu', 'sui', 'cai', NULL, 'qiu', 'pi', 'pang', 'wa', 'yao', 'rong', 'xun', 'cu', 'die',
|
||||
0x20 => 'chi', 'cuo', 'meng', 'xuan', 'duo', 'bie', 'zhe', 'chu', 'chan', 'gui', 'duan', 'zou', 'deng', 'lai', 'teng', 'yue',
|
||||
0x30 => 'quan', 'zhu', 'ling', 'chen', 'zhen', 'fu', 'she', 'tiao', 'kua', 'ai', NULL, 'qiong', 'shu', 'hai', 'shan', 'wai',
|
||||
0x40 => 'zhan', 'long', 'jiu', 'li', NULL, 'chun', 'rong', 'yue', 'jue', 'kang', 'fan', 'qi', 'hong', 'fu', 'lu', 'hong',
|
||||
0x50 => 'tuo', 'min', 'tian', 'juan', 'qi', 'zheng', 'qing', 'gong', 'tian', 'lang', 'mao', 'yin', 'lu', 'yuan', 'ju', 'pi',
|
||||
0x60 => NULL, 'xie', 'bian', 'hun', 'zhu', 'rong', 'sang', 'wu', 'cha', 'keng', 'shan', 'peng', 'man', 'xiu', NULL, 'cong',
|
||||
0x70 => 'keng', 'zhuan', 'chan', 'si', 'chong', 'sui', 'bei', 'kai', NULL, 'zhi', 'wei', 'min', 'ling', 'zuan', 'nie', 'ling',
|
||||
0x80 => 'qi', 'yue', NULL, 'yi', 'xi', 'chen', NULL, 'rong', 'chen', 'nong', 'you', 'ji', 'bo', 'fang', NULL, NULL,
|
||||
0x90 => 'cu', 'di', 'jiao', 'yu', 'he', 'xu', 'yu', 'qu', NULL, 'bai', 'geng', 'jiong', NULL, 'ya', 'shu', 'you',
|
||||
0xA0 => 'song', 'ye', 'cang', 'yao', 'shu', 'yan', 'shuai', 'liao', 'cong', 'yu', 'bo', 'sui', NULL, 'yan', 'lei', 'lin',
|
||||
0xB0 => 'ti', 'du', 'yue', 'ji', NULL, 'yun', NULL, NULL, 'ju', 'ju', 'chu', 'chen', 'gong', 'xiang', 'xian', 'an',
|
||||
0xC0 => 'gui', 'yu', 'lei', NULL, 'tu', 'chen', 'xing', 'qiu', 'hang', NULL, 'dang', 'cai', 'di', 'yan', 'zi', NULL,
|
||||
0xD0 => 'ying', 'chan', NULL, 'li', 'suo', 'ma', 'ma', NULL, 'tang', 'pei', 'lou', 'qi', 'cuo', 'tu', 'e', 'can',
|
||||
0xE0 => 'jie', 'yi', 'ji', 'dang', 'jue', 'bi', 'lei', 'yi', 'chun', 'chun', 'po', 'li', 'zai', 'tai', 'po', 'cu',
|
||||
0xF0 => 'ju', 'xu', 'fan', NULL, 'xu', 'er', 'huo', 'zhu', 'ran', 'fa', 'juan', 'han', 'liang', 'zhi', 'mi', 'yu',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x49.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x49.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => NULL, 'cen', 'mei', 'yin', 'mian', 'tu', 'kui', NULL, NULL, 'mi', 'rong', 'yu', 'qiang', 'mi', 'ju', 'pi',
|
||||
0x10 => 'jin', 'wang', 'ji', 'meng', 'jian', 'xue', 'bao', 'gan', 'chan', 'li', 'li', 'qiu', 'dun', 'ying', 'yun', 'chen',
|
||||
0x20 => 'zhi', 'ran', NULL, 'lue', 'kai', 'gui', 'yue', 'hui', 'pi', 'cha', 'duo', 'chan', 'sha', 'shi', 'she', 'xing',
|
||||
0x30 => 'ying', 'shi', 'chi', 'ye', 'han', 'fei', 'ye', 'yan', 'zuan', 'sou', 'jin', 'duo', 'xian', 'guan', 'tao', 'qie',
|
||||
0x40 => 'chan', 'han', 'meng', 'yue', 'cu', 'qian', 'jin', 'shan', 'mu', 'yuan', NULL, 'peng', 'zheng', 'zhi', 'chun', 'yu',
|
||||
0x50 => 'mou', 'wan', 'jiang', 'qi', 'su', 'pie', 'tian', 'kuan', 'cu', 'sui', NULL, 'jie', 'jian', 'ao', 'jiao', 'ye',
|
||||
0x60 => NULL, 'ye', 'long', 'zao', 'bao', 'lian', NULL, 'huan', 'lu', 'wei', 'xian', 'tie', 'bo', 'zheng', 'zhu', 'bei',
|
||||
0x70 => 'meng', 'xie', 'ou', 'you', NULL, 'xiao', 'li', 'zha', 'mi', NULL, 'ye', NULL, NULL, 'po', 'xie', NULL,
|
||||
0x80 => NULL, NULL, 'shan', 'zhuo', NULL, 'shan', 'jue', 'ji', 'jie', NULL, 'niao', 'ao', 'chu', 'wu', 'guan', 'xie',
|
||||
0x90 => 'ting', 'xue', 'dang', 'zhan', 'tan', 'peng', 'xie', 'xu', 'xian', 'si', 'kua', 'zheng', 'wu', 'huo', 'run', 'wen',
|
||||
0xA0 => 'du', 'huan', 'kuo', 'fu', 'chuai', 'xian', 'qin', 'qie', 'lan', NULL, 'ya', 'ying', 'que', 'hang', 'chun', 'zhi',
|
||||
0xB0 => NULL, 'wei', 'yan', 'xiang', 'yi', 'ni', 'zheng', 'chuai', NULL, 'shi', 'ding', 'zi', 'jue', 'xu', 'yuan', NULL,
|
||||
0xC0 => NULL, 'xu', 'dao', 'tian', 'ge', 'yi', 'hong', 'yi', NULL, 'li', 'ku', 'xian', 'sui', 'xi', 'xuan', NULL,
|
||||
0xD0 => NULL, 'di', 'lai', 'zhou', 'nian', 'cheng', 'jian', 'bi', 'zhuan', 'ling', 'hao', 'bang', 'tang', 'chi', 'ma', 'xian',
|
||||
0xE0 => 'shuan', 'yong', 'qu', NULL, 'pu', 'hui', 'wei', 'yi', 'ye', NULL, 'che', 'hao', 'bin', NULL, 'xian', 'chan',
|
||||
0xF0 => 'hun', NULL, 'han', 'ci', 'zhi', 'qi', 'kui', 'rou', NULL, 'ying', 'xiong', NULL, 'hu', 'cui', NULL, 'que',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x4a.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x4a.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'di', 'wu', 'qiu', NULL, 'yan', 'liao', 'bi', NULL, 'bin', NULL, 'yuan', 'nue', 'bao', 'ying', 'hong', 'ci',
|
||||
0x10 => 'qia', 'ti', 'yu', 'lei', 'bao', NULL, 'ji', 'fu', 'xian', 'cen', 'hu', 'se', 'beng', 'qing', 'yu', 'wa',
|
||||
0x20 => 'ai', 'han', 'dan', 'ge', 'di', 'huo', 'pang', NULL, 'zhui', 'ling', 'mai', 'mai', 'lian', 'xiao', 'xue', 'zhen',
|
||||
0x30 => 'po', 'fu', 'nou', 'xi', 'dui', 'dan', 'yun', 'xian', 'yin', 'shu', 'dui', 'beng', 'hu', 'fei', 'fei', 'za',
|
||||
0x40 => 'bei', 'fei', 'xian', 'shi', 'mian', 'zhan', 'zhan', 'zhan', 'hui', 'fu', 'wan', 'mo', 'qiao', 'liao', NULL, 'mie',
|
||||
0x50 => 'hu', 'hong', 'yu', 'qi', 'duo', 'ang', NULL, 'ba', 'di', 'xuan', 'di', 'bi', 'zhou', 'pao', 'tie', 'yi',
|
||||
0x60 => NULL, 'jia', 'zhi', 'tu', 'xie', 'dan', 'tiao', 'xie', 'chang', 'yuan', 'guan', 'liang', 'beng', NULL, 'lu', 'ji',
|
||||
0x70 => 'xuan', 'shu', 'du', 'sou', 'hu', 'yun', 'chan', 'bang', 'rong', 'e', 'weng', 'ba', 'feng', 'yu', 'zhe', 'fen',
|
||||
0x80 => 'guan', 'bu', 'ge', 'dun', 'huang', 'du', 'ti', 'bo', 'qian', 'lie', 'long', 'wei', 'zhan', 'lan', 'sui', 'na',
|
||||
0x90 => 'bi', 'tuo', 'zhu', 'die', 'bu', 'ju', 'po', 'xia', 'wei', 'po', 'da', 'fan', 'chan', 'hu', 'za', NULL,
|
||||
0xA0 => NULL, NULL, NULL, NULL, 'fan', 'xie', 'hong', 'chi', 'bao', 'yin', NULL, 'jing', 'bo', 'ruan', 'chou', 'ying',
|
||||
0xB0 => 'yi', 'gai', 'kun', 'yun', 'zhen', 'ya', 'ju', 'hou', 'min', 'bai', 'ge', 'bian', 'zhuo', 'hao', 'zhen', 'sheng',
|
||||
0xC0 => 'gen', 'bi', 'duo', 'chun', 'chua', 'san', 'cheng', 'ran', 'chen', 'mao', 'pei', 'wei', 'pi', 'fu', 'zhuo', 'qi',
|
||||
0xD0 => 'lin', 'yi', 'men', 'wu', 'qi', 'die', 'chen', 'xia', 'he', 'sang', 'gua', 'hou', 'ao', 'fu', 'qiao', 'hun',
|
||||
0xE0 => 'pi', 'yan', 'si', 'xi', 'ming', 'kui', 'ge', NULL, 'ao', 'san', 'shuang', 'lou', 'zhen', 'hui', 'chan', NULL,
|
||||
0xF0 => 'lin', 'na', 'han', 'du', 'jin', 'mian', 'fan', 'e', 'chao', 'hong', 'hong', 'yu', 'xue', 'pao', 'bi', 'chao',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x4b.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x4b.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'you', 'yi', 'xue', 'sa', 'xu', 'li', 'li', 'yuan', 'dui', 'huo', 'sha', 'leng', 'pou', 'hu', 'guo', 'bu',
|
||||
0x10 => 'rui', 'wei', 'sou', 'an', 'yu', 'xiang', 'heng', 'yang', 'xiao', 'yao', NULL, 'bi', NULL, 'heng', 'tao', 'liu',
|
||||
0x20 => NULL, 'zhu', NULL, 'xi', 'zan', 'yi', 'dou', 'yuan', 'jiu', NULL, 'bo', 'ti', 'ying', NULL, 'yi', 'nian',
|
||||
0x30 => 'shao', 'ben', 'gou', 'ban', 'mo', 'gai', 'en', 'she', NULL, 'zhi', 'yang', 'jian', 'yuan', 'shui', 'ti', 'wei',
|
||||
0x40 => 'xun', 'zhi', 'yi', 'ren', 'shi', 'hu', 'ne', 'ye', 'jian', 'sui', 'ying', 'bao', 'hu', 'hu', 'ye', NULL,
|
||||
0x50 => 'yang', 'lian', 'xi', 'en', 'dui', 'zan', 'zhu', 'ying', 'ying', 'jin', 'chuang', 'dan', NULL, 'kuai', 'yi', 'ye',
|
||||
0x60 => 'jian', 'en', 'ning', 'ci', 'qian', 'xue', 'bo', 'mi', 'shui', 'mo', 'liang', 'qi', 'qi', 'shou', 'fu', 'bo',
|
||||
0x70 => 'beng', 'bie', 'yi', 'wei', 'huan', 'fan', 'qi', 'mao', 'bao', 'ang', 'ang', 'fu', 'qi', 'qun', 'tuo', 'yi',
|
||||
0x80 => 'bo', 'pian', 'ba', NULL, 'xuan', NULL, NULL, 'yu', 'chi', 'lu', 'yi', 'li', NULL, 'niao', 'xi', 'wu',
|
||||
0x90 => NULL, 'lei', 'pu', 'zhuo', 'zui', 'zhuo', 'chang', 'an', 'er', 'yu', 'leng', 'fu', 'zha', 'hun', 'chun', 'sou',
|
||||
0xA0 => 'bi', 'bi', 'zha', NULL, 'he', 'li', NULL, 'han', 'zai', 'gu', 'cheng', 'lou', 'mo', 'mi', 'mai', 'ao',
|
||||
0xB0 => 'zhe', 'zhu', 'huang', 'fan', 'deng', 'tong', NULL, 'du', 'wo', 'wei', 'ji', 'chi', 'lin', 'biao', 'long', 'jian',
|
||||
0xC0 => 'nie', 'luo', 'shen', NULL, 'gua', 'nie', 'yi', 'ku', 'wan', 'wa', 'qia', 'bo', 'kao', 'ling', 'gan', 'gua',
|
||||
0xD0 => 'hai', 'kuang', 'heng', 'kui', 'ze', 'ting', 'lang', 'bi', 'huan', 'po', 'yao', 'wan', 'ti', 'sui', 'kua', 'dui',
|
||||
0xE0 => 'ao', 'jian', 'mo', 'kui', 'kuai', 'an', 'ma', 'qing', 'qiao', NULL, 'kao', 'hao', 'duo', 'xian', 'nai', 'suo',
|
||||
0xF0 => 'jie', 'pi', 'pa', 'song', 'chang', 'nie', 'man', 'song', 'ci', 'xian', 'kuo', NULL, 'di', 'pou', 'tiao', 'zu',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x4c.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x4c.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'wo', 'fei', 'cai', 'peng', 'sai', NULL, 'rou', 'qi', 'cuo', 'pan', 'bo', 'man', 'zong', 'ci', 'kui', 'ji',
|
||||
0x10 => 'lan', NULL, 'meng', 'mian', 'pan', 'lu', 'zuan', NULL, 'liu', 'yi', 'wen', 'li', 'li', 'zeng', 'zhu', 'hun',
|
||||
0x20 => 'shen', 'chi', 'xing', 'wang', 'dong', 'huo', 'pi', 'hu', 'mei', 'che', 'mei', 'chao', 'ju', 'nou', NULL, 'yi',
|
||||
0x30 => 'ru', 'ling', 'ya', NULL, 'qi', 'zi', NULL, 'bang', 'gong', 'ze', 'jie', 'yu', 'qin', 'bei', 'ba', 'tuo',
|
||||
0x40 => 'yang', 'qiao', 'you', 'zhi', 'jie', 'mo', 'sheng', 'shan', 'qi', 'shan', 'mi', 'gong', 'yi', 'geng', 'geng', 'tou',
|
||||
0x50 => 'fu', 'xue', 'ye', 'ting', 'tiao', 'mou', 'liu', 'can', 'li', 'shu', 'lu', 'huo', 'cuo', 'pai', 'liu', 'ju',
|
||||
0x60 => 'zhan', 'ju', 'zheng', 'zu', 'xian', 'zhi', NULL, NULL, 'la', NULL, NULL, 'la', 'xu', 'geng', 'e', 'mu',
|
||||
0x70 => 'zhong', 'ti', 'yuan', 'zhan', 'geng', 'weng', 'lang', 'yu', 'sou', 'zha', 'hai', 'hua', 'zhan', NULL, 'lou', 'chan',
|
||||
0x80 => 'zhi', 'wei', 'xuan', 'zao', 'min', 'gui', 'su', NULL, NULL, 'si', 'duo', 'cen', 'kuan', 'teng', 'nei', 'lao',
|
||||
0x90 => 'lu', 'yi', 'xie', 'yan', 'qing', 'pu', 'chou', 'xian', 'guan', 'jie', 'lai', 'meng', 'ye', NULL, 'li', 'yin',
|
||||
0xA0 => 'chun', 'qiu', 'teng', 'yu', NULL, NULL, 'dai', 'du', 'hong', NULL, 'xi', NULL, 'qi', NULL, 'yuan', 'ji',
|
||||
0xB0 => 'yun', 'fang', 'gong', 'hang', 'zhen', 'que', NULL, NULL, 'jie', 'pi', 'gan', 'xuan', 'sheng', 'shi', 'qiao', 'ci',
|
||||
0xC0 => 'die', 'bo', 'diao', 'wan', 'ci', 'zhi', 'bai', 'wu', 'bao', 'dan', 'ba', 'tong', NULL, 'gong', 'jiu', 'gui',
|
||||
0xD0 => 'ci', 'you', 'yuan', 'lao', 'ju', 'fu', 'nie', 'e', 'e', 'xing', 'kan', 'yan', 'tu', 'pou', 'beng', 'ming',
|
||||
0xE0 => 'shui', 'yan', 'qi', 'yuan', 'bie', NULL, 'xuan', 'hou', 'huang', 'yao', 'juan', 'kui', 'e', 'ji', 'mo', 'chong',
|
||||
0xF0 => 'bao', 'wu', 'zhen', 'xu', 'ta', 'chi', 'xi', 'cong', 'ma', 'kou', 'yan', 'can', NULL, 'he', 'deng', 'ran',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x4d.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x4d.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'tong', 'yu', 'xiang', 'nao', 'shun', 'fen', 'pu', 'ling', 'ao', 'huan', 'yi', 'huan', 'meng', 'ying', 'lei', 'yan',
|
||||
0x10 => 'bao', 'die', 'ling', 'shi', 'jiao', 'lie', 'jing', 'ju', 'ti', 'pi', 'gang', 'xiao', 'wai', 'chuai', 'di', 'huan',
|
||||
0x20 => 'yao', 'li', 'mi', 'hu', 'sheng', 'jia', 'yin', 'wei', NULL, 'piao', 'lu', 'ling', 'yi', 'cai', 'shan', 'hu',
|
||||
0x30 => 'shu', 'tuo', 'mo', 'hua', 'tie', 'bing', 'peng', 'hun', 'fu', 'guo', 'bu', 'li', 'chan', 'pi', 'cuo', 'meng',
|
||||
0x40 => 'suo', 'qiang', 'zhi', 'kuang', 'bi', 'ao', 'meng', 'xian', 'ku', 'tou', 'tuan', 'wei', 'xian', NULL, 'tuan', 'lao',
|
||||
0x50 => 'chan', 'ni', 'ni', 'li', 'dong', 'ju', 'qian', 'bo', 'shai', 'zha', 'tao', 'qian', 'nong', 'yi', 'jing', 'gan',
|
||||
0x60 => 'di', 'jian', 'mei', 'da', 'jian', 'yu', 'xie', 'zai', 'mang', 'li', 'gun', 'xun', 'ta', 'zhe', 'yang', 'tuan',
|
||||
0x70 => 'shang', 'xi', 'qiao', 'wei', 'ying', 'chua', 'qu', 'wa', NULL, 'zhi', 'ting', 'gu', 'shang', 'ca', 'fu', 'tie',
|
||||
0x80 => 'ta', 'ta', 'zhuo', 'han', 'ping', 'he', 'zhui', 'zhou', 'bo', 'liu', 'nu', 'xi', 'pao', 'di', 'he', 'ti',
|
||||
0x90 => 'wai', 'ti', 'qi', 'ji', 'chi', 'ba', 'jin', 'ke', 'li', 'ju', 'qu', 'la', 'gu', 'qia', 'qi', 'xian',
|
||||
0xA0 => 'jian', 'shi', 'jian', 'ai', 'hua', 'zha', 'ze', 'yao', 'zhan', 'ji', 'cha', 'yan', 'jian', NULL, 'yan', NULL,
|
||||
0xB0 => 'jiao', 'tong', 'nan', 'yue', NULL, 'chi', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xC0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xD0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xE0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
0xF0 => NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x4e.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x4e.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'yi', 'ding', 'kao', 'qi', 'shang', 'xia', 'han', 'wan', 'zhang', 'san', 'shang', 'xia', 'ji', 'bu', 'yu', 'mian',
|
||||
0x10 => 'gai', 'chou', 'chou', 'zhuan', 'qie', 'pi', 'shi', 'shi', 'qiu', 'bing', 'ye', 'cong', 'dong', 'si', 'cheng', 'diu',
|
||||
0x20 => 'qiu', 'liang', 'diu', 'you', 'liang', 'yan', 'bing', 'sang', 'gun', 'jiu', 'ge', 'ya', 'qiang', 'zhong', 'ji', 'jie',
|
||||
0x30 => 'feng', 'guan', 'chuan', 'chan', 'lin', 'zhuo', 'zhu', 'ha', 'wan', 'dan', 'wei', 'zhu', 'jing', 'li', 'ju', 'pie',
|
||||
0x40 => 'fu', 'yi', 'yi', 'nai', 'wu', 'jiu', 'jiu', 'tuo', 'me', 'yi', 'yi', 'zhi', 'wu', 'zha', 'hu', 'fa',
|
||||
0x50 => 'le', 'yin', 'ping', 'pang', 'qiao', 'hu', 'guai', 'cheng', 'cheng', 'yi', 'yin', 'ya', 'mie', 'jiu', 'qi', 'ye',
|
||||
0x60 => 'xi', 'xiang', 'gai', 'jiu', 'xia', 'hu', 'shu', 'dou', 'shi', 'ji', 'nang', 'jia', 'ju', 'shi', 'mao', 'hu',
|
||||
0x70 => 'mai', 'luan', 'zi', 'ru', 'xue', 'yan', 'fu', 'sha', 'na', 'gan', 'suo', 'yu', 'cui', 'zhe', 'gan', 'zhi',
|
||||
0x80 => 'gui', 'gan', 'luan', 'lin', 'yi', 'jue', 'le', 'ma', 'yu', 'zheng', 'shi', 'shi', 'er', 'chu', 'yu', 'kui',
|
||||
0x90 => 'yu', 'yun', 'hu', 'qi', 'wu', 'jing', 'si', 'sui', 'gen', 'gen', 'ya', 'xie', 'ya', 'qi', 'ya', 'ji',
|
||||
0xA0 => 'tou', 'wang', 'kang', 'ta', 'jiao', 'hai', 'yi', 'chan', 'heng', 'mu', 'ye', 'xiang', 'jing', 'ting', 'liang', 'xiang',
|
||||
0xB0 => 'jing', 'ye', 'qin', 'bo', 'you', 'xie', 'dan', 'lian', 'duo', 'men', 'ren', 'ren', 'ji', 'ji', 'wang', 'yi',
|
||||
0xC0 => 'shen', 'ren', 'le', 'ding', 'ze', 'jin', 'pu', 'chou', 'ba', 'zhang', 'jin', 'jie', 'bing', 'reng', 'cong', 'fo',
|
||||
0xD0 => 'san', 'lun', 'bing', 'cang', 'zi', 'shi', 'ta', 'zhang', 'fu', 'xian', 'xian', 'tuo', 'hong', 'tong', 'ren', 'qian',
|
||||
0xE0 => 'gan', 'ge', 'bo', 'dai', 'ling', 'yi', 'chao', 'chang', 'sa', 'shang', 'yi', 'mu', 'men', 'ren', 'jia', 'chao',
|
||||
0xF0 => 'yang', 'qian', 'zhong', 'pi', 'wo', 'wu', 'jian', 'jia', 'yao', 'feng', 'cang', 'ren', 'wang', 'fen', 'di', 'fang',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x4f.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x4f.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'zhong', 'qi', 'pei', 'yu', 'diao', 'dun', 'wu', 'yi', 'xin', 'kang', 'yi', 'ji', 'ai', 'wu', 'ji', 'fu',
|
||||
0x10 => 'fa', 'xiu', 'jin', 'pi', 'dan', 'fu', 'tang', 'zhong', 'you', 'huo', 'hui', 'yu', 'cui', 'chuan', 'san', 'wei',
|
||||
0x20 => 'chuan', 'che', 'ya', 'xian', 'shang', 'chang', 'lun', 'cang', 'xun', 'xin', 'wei', 'zhu', 'ze', 'xian', 'nu', 'bo',
|
||||
0x30 => 'gu', 'ni', 'ni', 'xie', 'ban', 'xu', 'ling', 'zhou', 'shen', 'qu', 'ci', 'beng', 'shi', 'jia', 'pi', 'yi',
|
||||
0x40 => 'si', 'yi', 'zheng', 'dian', 'han', 'mai', 'dan', 'zhu', 'bu', 'qu', 'bi', 'zhao', 'ci', 'wei', 'di', 'zhu',
|
||||
0x50 => 'zuo', 'you', 'yang', 'ti', 'zhan', 'he', 'bi', 'tuo', 'she', 'yu', 'yi', 'fu', 'zuo', 'gou', 'ning', 'tong',
|
||||
0x60 => 'ni', 'xian', 'qu', 'yong', 'wa', 'qian', 'shi', 'ka', 'bao', 'pei', 'hui', 'he', 'lao', 'xiang', 'ge', 'yang',
|
||||
0x70 => 'bai', 'fa', 'ming', 'jia', 'er', 'bing', 'ji', 'hen', 'huo', 'gui', 'quan', 'tiao', 'jiao', 'ci', 'yi', 'shi',
|
||||
0x80 => 'xing', 'shen', 'tuo', 'kan', 'zhi', 'gai', 'lai', 'yi', 'chi', 'kua', 'guang', 'li', 'yin', 'shi', 'mi', 'zhu',
|
||||
0x90 => 'xu', 'you', 'an', 'lu', 'mou', 'er', 'lun', 'dong', 'cha', 'chi', 'xun', 'gong', 'zhou', 'yi', 'ru', 'cun',
|
||||
0xA0 => 'xia', 'si', 'zai', 'lu', 'ta', 'jiao', 'zhen', 'ce', 'qiao', 'kuai', 'chai', 'ning', 'nong', 'jin', 'wu', 'hou',
|
||||
0xB0 => 'jiong', 'cheng', 'zhen', 'zuo', 'chou', 'qin', 'lu', 'ju', 'shu', 'ting', 'shen', 'tui', 'bo', 'nan', 'xiao', 'bian',
|
||||
0xC0 => 'tui', 'yu', 'xi', 'cu', 'e', 'qiu', 'xu', 'guang', 'ku', 'wu', 'jun', 'yi', 'fu', 'liang', 'zu', 'qiao',
|
||||
0xD0 => 'li', 'yong', 'hun', 'jing', 'qian', 'san', 'pei', 'su', 'fu', 'xi', 'li', 'fu', 'ping', 'bao', 'yu', 'qi',
|
||||
0xE0 => 'xia', 'xin', 'xiu', 'yu', 'di', 'che', 'chou', 'zhi', 'yan', 'lia', 'li', 'lai', 'si', 'jian', 'xiu', 'fu',
|
||||
0xF0 => 'huo', 'ju', 'xiao', 'pai', 'jian', 'biao', 'chu', 'fei', 'feng', 'ya', 'an', 'bei', 'yu', 'xin', 'bi', 'hu',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x50.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x50.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'chang', 'zhi', 'bing', 'jiu', 'yao', 'cui', 'lia', 'wan', 'lai', 'cang', 'zong', 'ge', 'guan', 'bei', 'tian', 'shu',
|
||||
0x10 => 'shu', 'men', 'dao', 'tan', 'jue', 'chui', 'xing', 'peng', 'tang', 'hou', 'yi', 'qi', 'ti', 'gan', 'jing', 'jie',
|
||||
0x20 => 'sui', 'chang', 'jie', 'fang', 'zhi', 'kong', 'juan', 'zong', 'ju', 'qian', 'ni', 'lun', 'zhuo', 'wo', 'luo', 'song',
|
||||
0x30 => 'leng', 'hun', 'dong', 'zi', 'ben', 'wu', 'ju', 'nai', 'cai', 'jian', 'zhai', 'ye', 'zhi', 'sha', 'qing', 'qie',
|
||||
0x40 => 'ying', 'cheng', 'jian', 'yan', 'ruan', 'zhong', 'chun', 'jia', 'ji', 'wei', 'yu', 'bing', 'ruo', 'ti', 'wei', 'pian',
|
||||
0x50 => 'yan', 'feng', 'tang', 'wo', 'e', 'xie', 'che', 'sheng', 'kan', 'di', 'zuo', 'cha', 'ting', 'bei', 'xie', 'huang',
|
||||
0x60 => 'yao', 'zhan', 'chou', 'yan', 'you', 'jian', 'xu', 'zha', 'ci', 'fu', 'bi', 'zhi', 'zong', 'mian', 'ji', 'yi',
|
||||
0x70 => 'xie', 'xun', 'cai', 'duan', 'ce', 'zhen', 'ou', 'tou', 'tou', 'bei', 'za', 'lou', 'jie', 'wei', 'fen', 'chang',
|
||||
0x80 => 'gui', 'sou', 'zhi', 'su', 'xia', 'fu', 'yuan', 'rong', 'li', 'nu', 'yun', 'jiang', 'ma', 'bang', 'dian', 'tang',
|
||||
0x90 => 'hao', 'jie', 'xi', 'shan', 'qian', 'jue', 'cang', 'chu', 'san', 'bei', 'xiao', 'yong', 'yao', 'tan', 'suo', 'yang',
|
||||
0xA0 => 'fa', 'bing', 'jia', 'dai', 'zai', 'tang', 'gu', 'bin', 'chu', 'nuo', 'can', 'lei', 'cui', 'yong', 'zao', 'zong',
|
||||
0xB0 => 'beng', 'song', 'ao', 'chuan', 'yu', 'zhai', 'zu', 'shang', 'chuang', 'jing', 'chi', 'sha', 'han', 'zhang', 'qing', 'yan',
|
||||
0xC0 => 'di', 'xie', 'lou', 'bei', 'piao', 'jin', 'lian', 'lu', 'man', 'qian', 'xian', 'tan', 'ying', 'dong', 'zhuan', 'xiang',
|
||||
0xD0 => 'shan', 'qiao', 'jiong', 'tui', 'zun', 'pu', 'xi', 'lao', 'chang', 'guang', 'liao', 'qi', 'cheng', 'chan', 'wei', 'ji',
|
||||
0xE0 => 'bo', 'hui', 'chuan', 'tie', 'dan', 'jiao', 'jiu', 'seng', 'fen', 'xian', 'ju', 'e', 'jiao', 'jian', 'tong', 'lin',
|
||||
0xF0 => 'bo', 'gu', 'xian', 'su', 'xian', 'jiang', 'min', 'ye', 'jin', 'jia', 'qiao', 'pi', 'feng', 'zhou', 'ai', 'sai',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x51.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x51.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'yi', 'jun', 'nong', 'chan', 'yi', 'dang', 'jing', 'xuan', 'kuai', 'jian', 'chu', 'dan', 'jiao', 'sha', 'zai', 'can',
|
||||
0x10 => 'bin', 'an', 'ru', 'tai', 'chou', 'chai', 'lan', 'ni', 'jin', 'qian', 'meng', 'wu', 'ning', 'qiong', 'ni', 'chang',
|
||||
0x20 => 'lie', 'lei', 'lu', 'kuang', 'bao', 'yu', 'biao', 'zan', 'zhi', 'si', 'you', 'hao', 'chen', 'chen', 'li', 'teng',
|
||||
0x30 => 'wei', 'long', 'chu', 'chan', 'rang', 'shu', 'hui', 'li', 'luo', 'zan', 'nuo', 'tang', 'yan', 'lei', 'nang', 'er',
|
||||
0x40 => 'wu', 'yun', 'zan', 'yuan', 'xiong', 'chong', 'zhao', 'xiong', 'xian', 'guang', 'dui', 'ke', 'dui', 'mian', 'tu', 'chang',
|
||||
0x50 => 'er', 'dui', 'er', 'jin', 'tu', 'si', 'yan', 'yan', 'shi', 'Shi ', 'dang', 'qian', 'dou', 'fen', 'mao', 'shen',
|
||||
0x60 => 'dou', 'Bai ', 'jing', 'li', 'huang', 'ru', 'wang', 'nei', 'quan', 'liang', 'yu', 'ba', 'gong', 'liu', 'xi', 'han',
|
||||
0x70 => 'lan', 'gong', 'tian', 'guan', 'xing', 'bing', 'qi', 'ju', 'dian', 'zi', 'fen', 'yang', 'jian', 'shou', 'ji', 'yi',
|
||||
0x80 => 'ji', 'chan', 'jiong', 'mao', 'ran', 'nei', 'yuan', 'mao', 'gang', 'ran', 'ce', 'jiong', 'ce', 'zai', 'gua', 'jiong',
|
||||
0x90 => 'mao', 'zhou', 'mao', 'gou', 'xu', 'mian', 'mi', 'rong', 'yin', 'xie', 'kan', 'jun', 'nong', 'yi', 'mi', 'shi',
|
||||
0xA0 => 'guan', 'meng', 'zhong', 'ju', 'yuan', 'ming', 'kou', 'lin', 'fu', 'xie', 'mi', 'bing', 'dong', 'tai', 'gang', 'feng',
|
||||
0xB0 => 'bing', 'hu', 'chong', 'jue', 'hu', 'kuang', 'ye', 'leng', 'pan', 'fu', 'min', 'dong', 'xian', 'lie', 'qia', 'jian',
|
||||
0xC0 => 'jing', 'shu', 'mei', 'tu', 'qi', 'gu', 'zhun', 'song', 'jing', 'liang', 'qing', 'diao', 'ling', 'dong', 'gan', 'jian',
|
||||
0xD0 => 'yin', 'cou', 'yi', 'li', 'chuang', 'ming', 'zhun', 'cui', 'si', 'duo', 'jin', 'lin', 'lin', 'ning', 'xi', 'du',
|
||||
0xE0 => 'ji', 'fan', 'fan', 'fan', 'feng', 'ju', 'chu', 'zheng', 'feng', 'mu', 'zhi', 'fu', 'feng', 'ping', 'feng', 'kai',
|
||||
0xF0 => 'huang', 'kai', 'gan', 'deng', 'ping', 'qian', 'xiong', 'kuai', 'tu', 'ao', 'chu', 'ji', 'dang', 'han', 'han', 'zao',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x52.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x52.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'dao', 'diao', 'dao', 'ren', 'ren', 'chuang', 'fen', 'qie', 'yi', 'ji', 'kan', 'qian', 'cun', 'chu', 'wen', 'ji',
|
||||
0x10 => 'dan', 'xing', 'hua', 'wan', 'jue', 'li', 'yue', 'lie', 'liu', 'ze', 'gang', 'chuang', 'fu', 'chu', 'qu', 'ju',
|
||||
0x20 => 'shan', 'min', 'ling', 'zhong', 'pan', 'bie', 'jie', 'jie', 'pao', 'li', 'shan', 'bie', 'chan', 'jing', 'gua', 'geng',
|
||||
0x30 => 'dao', 'chuang', 'kui', 'ku', 'duo', 'er', 'zhi', 'shua', 'quan', 'sha', 'ci', 'ke', 'jie', 'gui', 'ci', 'gui',
|
||||
0x40 => 'kai', 'duo', 'ji', 'ti', 'jing', 'lou', 'luo', 'ze', 'yuan', 'cuo', 'xue', 'ke', 'la', 'qian', 'sha', 'chuang',
|
||||
0x50 => 'gua', 'jian', 'cuo', 'li', 'ti', 'fei', 'pou', 'chan', 'qi', 'chuang', 'zi', 'gang', 'wan', 'bo', 'ji', 'duo',
|
||||
0x60 => 'qing', 'shan', 'du', 'jian', 'ji', 'bo', 'yan', 'ju', 'huo', 'sheng', 'jian', 'duo', 'duan', 'wu', 'gua', 'fu',
|
||||
0x70 => 'sheng', 'jian', 'ge', 'da', 'kai', 'chuang', 'chuan', 'chan', 'tuan', 'lu', 'li', 'peng', 'shan', 'piao', 'kou', 'jiao',
|
||||
0x80 => 'gua', 'qiao', 'jue', 'hua', 'zha', 'zhuo', 'lian', 'ju', 'pi', 'liu', 'gui', 'jiao', 'gui', 'jian', 'jian', 'tang',
|
||||
0x90 => 'huo', 'ji', 'jian', 'yi', 'jian', 'zhi', 'chan', 'jian', 'mo', 'li', 'zhu', 'li', 'ya', 'quan', 'ban', 'gong',
|
||||
0xA0 => 'jia', 'wu', 'mai', 'lie', 'jin', 'keng', 'xie', 'zhi', 'dong', 'zhu', 'nu', 'jie', 'qu', 'shao', 'yi', 'zhu',
|
||||
0xB0 => 'mo', 'li', 'jin', 'lao', 'lao', 'juan', 'kou', 'yang', 'wa', 'xiao', 'mou', 'kuang', 'jie', 'lie', 'he', 'shi',
|
||||
0xC0 => 'ke', 'jin', 'gao', 'bo', 'min', 'chi', 'lang', 'yong', 'yong', 'mian', 'ke', 'xun', 'juan', 'qing', 'lu', 'bu',
|
||||
0xD0 => 'meng', 'chi', 'lei', 'kai', 'mian', 'dong', 'xu', 'xu', 'kan', 'wu', 'yi', 'xun', 'weng', 'sheng', 'lao', 'mu',
|
||||
0xE0 => 'lu', 'piao', 'shi', 'ji', 'qin', 'jiang', 'chao', 'quan', 'xiang', 'yi', 'jue', 'fan', 'juan', 'tong', 'ju', 'dan',
|
||||
0xF0 => 'xie', 'mai', 'xun', 'xun', 'lu', 'li', 'che', 'rang', 'quan', 'bao', 'shao', 'yun', 'jiu', 'bao', 'gou', 'wu',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x53.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x53.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'yun', 'wen', 'bi', 'gai', 'gai', 'bao', 'cong', 'yi', 'xiong', 'peng', 'ju', 'tao', 'ge', 'pu', 'e', 'pao',
|
||||
0x10 => 'fu', 'gong', 'da', 'jiu', 'qiong', 'bi', 'hua', 'bei', 'nao', 'shi', 'fang', 'jiu', 'yi', 'za', 'jiang', 'kang',
|
||||
0x20 => 'jiang', 'kuang', 'hu', 'xia', 'qu', 'bian', 'gui', 'qie', 'zang', 'kuang', 'fei', 'hu', 'yu', 'gui', 'kui', 'hui',
|
||||
0x30 => 'dan', 'gui', 'lian', 'lian', 'suan', 'du', 'jiu', 'jue', 'xi', 'pi', 'qu', 'yi', 'ke', 'yan', 'bian', 'ni',
|
||||
0x40 => 'qu', 'shi', 'xun', 'qian', 'nian', 'sa', 'zu', 'sheng', 'wu', 'hui', 'ban', 'shi', 'xi', 'wan', 'hua', 'xie',
|
||||
0x50 => 'wan', 'bei', 'zu', 'zhuo', 'xie', 'dan', 'mai', 'nan', 'dan', 'ji', 'bo', 'shuai', 'bo', 'kuang', 'bian', 'bu',
|
||||
0x60 => 'zhan', 'ka', 'lu', 'you', 'lu', 'xi', 'gua', 'wo', 'xie', 'jie', 'jie', 'wei', 'ang', 'qiong', 'zhi', 'mao',
|
||||
0x70 => 'yin', 'wei', 'shao', 'ji', 'que', 'luan', 'chi', 'juan', 'xie', 'xu', 'jin', 'que', 'wu', 'ji', 'e', 'qing',
|
||||
0x80 => 'xi', 'san', 'chang', 'wei', 'e', 'ting', 'li', 'zhe', 'han', 'li', 'ya', 'ya', 'yan', 'she', 'di', 'zha',
|
||||
0x90 => 'pang', 'ya', 'he', 'ya', 'zhi', 'ce', 'pang', 'ti', 'li', 'she', 'hou', 'ting', 'zui', 'cuo', 'fei', 'yuan',
|
||||
0xA0 => 'ce', 'yuan', 'xiang', 'yan', 'li', 'jue', 'sha', 'dian', 'chu', 'jiu', 'jin', 'ao', 'gui', 'yan', 'si', 'li',
|
||||
0xB0 => 'chang', 'lan', 'li', 'yan', 'yan', 'yuan', 'si', 'gong', 'lin', 'rou', 'qu', 'qu', 'er', 'lei', 'du', 'xian',
|
||||
0xC0 => 'zhuan', 'san', 'can', 'can', 'can', 'can', 'ai', 'dai', 'you', 'cha', 'ji', 'you', 'shuang', 'fan', 'shou', 'guai',
|
||||
0xD0 => 'ba', 'fa', 'ruo', 'shi', 'shu', 'zhuo', 'qu', 'shou', 'bian', 'xu', 'jia', 'pan', 'sou', 'gao', 'wei', 'sou',
|
||||
0xE0 => 'die', 'rui', 'cong', 'kou', 'gu', 'ju', 'ling', 'gua', 'dao', 'kou', 'zhi', 'jiao', 'zhao', 'ba', 'ding', 'ke',
|
||||
0xF0 => 'tai', 'chi', 'shi', 'you', 'qiu', 'po', 'ye', 'hao', 'si', 'tan', 'chi', 'le', 'diao', 'ji', 'liao', 'hong',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x54.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x54.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'mie', 'xu', 'mang', 'chi', 'ge', 'xuan', 'yao', 'zi', 'he', 'ji', 'diao', 'cun', 'tong', 'ming', 'hou', 'li',
|
||||
0x10 => 'tu', 'xiang', 'zha', 'xia', 'ye', 'lu', 'ya', 'ma', 'ou', 'huo', 'yi', 'jun', 'chou', 'lin', 'tun', 'yin',
|
||||
0x20 => 'fei', 'bi', 'qin', 'qin', 'jie', 'bu', 'fou', 'ba', 'dun', 'fen', 'e', 'han', 'ting', 'keng', 'shun', 'qi',
|
||||
0x30 => 'hong', 'zhi', 'yin', 'wu', 'wu', 'chao', 'ne', 'xue', 'xi', 'chui', 'dou', 'wen', 'hou', 'hong', 'wu', 'gao',
|
||||
0x40 => 'ya', 'jun', 'lu', 'e', 'ge', 'mei', 'dai', 'qi', 'cheng', 'wu', 'gao', 'fu', 'jiao', 'hong', 'chi', 'sheng',
|
||||
0x50 => 'ne', 'tun', 'fu', 'yi', 'dai', 'ou', 'li', 'bei', 'yuan', 'guo', 'wen', 'qiang', 'wu', 'e', 'shi', 'juan',
|
||||
0x60 => 'pen', 'wen', 'ne', 'm', 'ling', 'ran', 'you', 'di', 'zhou', 'shi', 'zhou', 'tie', 'xi', 'yi', 'qi', 'ping',
|
||||
0x70 => 'zi', 'gu', 'ci', 'wei', 'xu', 'a', 'nao', 'ga', 'pei', 'yi', 'xiao', 'shen', 'hu', 'ming', 'da', 'qu',
|
||||
0x80 => 'ju', 'han', 'za', 'tuo', 'duo', 'pou', 'pao', 'bie', 'fu', 'yang', 'he', 'za', 'he', 'hai', 'jiu', 'yong',
|
||||
0x90 => 'fu', 'da', 'zhou', 'wa', 'ka', 'gu', 'ka', 'zuo', 'bu', 'long', 'dong', 'ning', 'ta', 'si', 'xian', 'huo',
|
||||
0xA0 => 'qi', 'er', 'e', 'guang', 'zha', 'xi', 'yi', 'lie', 'zi', 'mie', 'mi', 'zhi', 'yao', 'ji', 'zhou', 'ge',
|
||||
0xB0 => 'shu', 'zan', 'xiao', 'hai', 'hui', 'kua', 'huai', 'tao', 'xian', 'e', 'xuan', 'xiu', 'guo', 'yan', 'lao', 'yi',
|
||||
0xC0 => 'ai', 'pin', 'shen', 'tong', 'hong', 'xiong', 'duo', 'wa', 'ha', 'zai', 'you', 'die', 'pai', 'xiang', 'ai', 'gen',
|
||||
0xD0 => 'kuang', 'ya', 'da', 'xiao', 'bi', 'hui', 'nian', 'hua', 'xing', 'kuai', 'duo', 'fen', 'ji', 'nong', 'mou', 'yo',
|
||||
0xE0 => 'hao', 'yuan', 'long', 'pou', 'mang', 'ge', 'o', 'chi', 'shao', 'li', 'na', 'zu', 'he', 'ku', 'xiao', 'xian',
|
||||
0xF0 => 'lao', 'bo', 'zhe', 'zha', 'liang', 'ba', 'mie', 'lie', 'sui', 'fu', 'bu', 'han', 'heng', 'geng', 'shuo', 'ge',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x55.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x55.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'you', 'yan', 'gu', 'gu', 'bei', 'han', 'suo', 'chun', 'yi', 'ai', 'jia', 'tu', 'xian', 'wan', 'li', 'xi',
|
||||
0x10 => 'tang', 'zuo', 'qiu', 'che', 'wu', 'zao', 'ya', 'dou', 'qi', 'di', 'qin', 'ma', 'mo', 'gong', 'dou', 'qu',
|
||||
0x20 => 'lao', 'liang', 'suo', 'zao', 'huan', 'lang', 'sha', 'ji', 'zuo', 'wo', 'feng', 'jin', 'hu', 'qi', 'shou', 'wei',
|
||||
0x30 => 'shua', 'chang', 'er', 'li', 'qiang', 'an', 'ze', 'yo', 'nian', 'yu', 'tian', 'lai', 'sha', 'xi', 'tuo', 'hu',
|
||||
0x40 => 'ai', 'zhao', 'nou', 'ken', 'zhuo', 'zhuo', 'shang', 'di', 'heng', 'lin', 'a', 'cai', 'xiang', 'tun', 'wu', 'wen',
|
||||
0x50 => 'cui', 'sha', 'gu', 'qi', 'qi', 'tao', 'dan', 'dan', 'ye', 'zi', 'bi', 'cui', 'chuai', 'he', 'ya', 'qi',
|
||||
0x60 => 'zhe', 'fei', 'liang', 'xian', 'pi', 'sha', 'la', 'ze', 'ying', 'gua', 'pa', 'zhe', 'se', 'zhuan', 'nie', 'guo',
|
||||
0x70 => 'luo', 'yan', 'di', 'quan', 'chan', 'bo', 'ding', 'lang', 'xiao', 'ju', 'tang', 'chi', 'ti', 'an', 'jiu', 'dan',
|
||||
0x80 => 'ka', 'yong', 'wei', 'nan', 'shan', 'yu', 'zhe', 'la', 'jie', 'hou', 'han', 'die', 'zhou', 'chai', 'wai', 'nuo',
|
||||
0x90 => 'yu', 'yin', 'za', 'yao', 'o', 'mian', 'hu', 'yun', 'chuan', 'hui', 'huan', 'huan', 'xi', 'he', 'ji', 'kui',
|
||||
0xA0 => 'zhong', 'wei', 'sha', 'xu', 'huang', 'duo', 'nie', 'xuan', 'liang', 'yu', 'sang', 'chi', 'qiao', 'yan', 'dan', 'pen',
|
||||
0xB0 => 'can', 'li', 'yo', 'zha', 'wei', 'miao', 'ying', 'pen', 'bu', 'kui', 'xi', 'yu', 'jie', 'lou', 'ku', 'zao',
|
||||
0xC0 => 'hu', 'ti', 'yao', 'he', 'a', 'xiu', 'qiang', 'se', 'yong', 'su', 'hong', 'xie', 'ai', 'suo', 'ma', 'cha',
|
||||
0xD0 => 'hai', 'ke', 'da', 'sang', 'chen', 'ru', 'sou', 'wa', 'ji', 'pang', 'wu', 'qian', 'shi', 'ge', 'zi', 'jie',
|
||||
0xE0 => 'luo', 'weng', 'wa', 'si', 'chi', 'hao', 'suo', 'Jia ', 'hai', 'suo', 'qin', 'nie', 'he', 'zhi', 'sai', 'n',
|
||||
0xF0 => 'ge', 'na', 'dia', 'ai', 'qiang', 'tong', 'bi', 'ao', 'ao', 'lian', 'zui', 'zhe', 'mo', 'sou', 'sou', 'tan',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x56.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x56.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'di', 'qi', 'jiao', 'chong', 'jiao', 'kai', 'tan', 'shan', 'cao', 'jia', 'ai', 'xiao', 'piao', 'lou', 'ga', 'gu',
|
||||
0x10 => 'xiao', 'hu', 'hui', 'guo', 'ou', 'xian', 'ze', 'chang', 'xu', 'po', 'de', 'ma', 'ma', 'hu', 'lei', 'du',
|
||||
0x20 => 'ga', 'tang', 'ye', 'beng', 'ying', 'sai', 'jiao', 'mi', 'xiao', 'hua', 'mai', 'ran', 'chuai', 'peng', 'lao', 'xiao',
|
||||
0x30 => 'ji', 'zhu', 'chao', 'kui', 'zui', 'xiao', 'si', 'hao', 'fu', 'liao', 'qiao', 'xi', 'chu', 'chan', 'dan', 'hei',
|
||||
0x40 => 'xun', 'e', 'zun', 'fan', 'chi', 'hui', 'zan', 'chuang', 'cu', 'dan', 'yu', 'tun', 'ceng', 'jiao', 'ye', 'xi',
|
||||
0x50 => 'qi', 'hao', 'lian', 'xu', 'deng', 'hui', 'yin', 'pu', 'jue', 'qin', 'xun', 'nie', 'lu', 'si', 'yan', 'ying',
|
||||
0x60 => 'da', 'zhan', 'o', 'zhou', 'jin', 'nong', 'hui', 'xie', 'qi', 'e', 'zao', 'yi', 'shi', 'jiao', 'yuan', 'ai',
|
||||
0x70 => 'yong', 'jue', 'kuai', 'yu', 'pen', 'dao', 'ga', 'hm', 'dun', 'dang', 'xin', 'sai', 'pi', 'pi', 'yin', 'zui',
|
||||
0x80 => 'ning', 'di', 'lan', 'ta', 'huo', 'ru', 'hao', 'xia', 'ye', 'duo', 'pi', 'chou', 'ji', 'jin', 'hao', 'ti',
|
||||
0x90 => 'chang', 'xun', 'me', 'ca', 'ti', 'lu', 'hui', 'bo', 'you', 'nie', 'yin', 'hu', 'me', 'hong', 'zhe', 'li',
|
||||
0xA0 => 'liu', 'hai', 'nang', 'xiao', 'mo', 'yan', 'li', 'lu', 'long', 'mo', 'dan', 'chen', 'pin', 'pi', 'xiang', 'huo',
|
||||
0xB0 => 'mo', 'xi', 'duo', 'ku', 'yan', 'chan', 'ying', 'rang', 'dian', 'la', 'ta', 'xiao', 'jue', 'chuo', 'huan', 'huo',
|
||||
0xC0 => 'zhuan', 'nie', 'xiao', 'ca', 'li', 'chan', 'chai', 'li', 'yi', 'luo', 'nang', 'za', 'su', 'xi', 'zen', 'jian',
|
||||
0xD0 => 'za', 'zhu', 'lan', 'nie', 'nang', 'lan', 'lo', 'wei', 'hui', 'yin', 'qiu', 'si', 'nin', 'jian', 'hui', 'xin',
|
||||
0xE0 => 'yin', 'nan', 'tuan', 'tuan', 'dun', 'kang', 'yuan', 'jiong', 'pian', 'yun', 'cong', 'hu', 'hui', 'yuan', 'e', 'guo',
|
||||
0xF0 => 'kun', 'cong', 'tong', 'tu', 'wei', 'lun', 'guo', 'qun', 'ri', 'ling', 'gu', 'guo', 'tai', 'guo', 'tu', 'you',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x57.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x57.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'guo', 'yin', 'hun', 'pu', 'yu', 'han', 'yuan', 'lun', 'quan', 'yu', 'qing', 'guo', 'chuan', 'wei', 'yuan', 'quan',
|
||||
0x10 => 'ku', 'fu', 'yuan', 'yuan', 'ya', 'tu', 'tu', 'tu', 'tuan', 'lue', 'hui', 'yi', 'huan', 'luan', 'luan', 'tu',
|
||||
0x20 => 'ya', 'tu', 'ting', 'sheng', 'pu', 'lu', 'kuai', 'ya', 'zai', 'wei', 'ge', 'yu', 'wu', 'gui', 'pi', 'yi',
|
||||
0x30 => 'de', 'qian', 'qian', 'zhen', 'zhuo', 'dang', 'qia', 'xia', 'shan', 'kuang', 'chang', 'qi', 'nie', 'mo', 'ji', 'jia',
|
||||
0x40 => 'zhi', 'zhi', 'ban', 'xun', 'yi', 'qin', 'mei', 'jun', 'rong', 'tun', 'fang', 'ben', 'ben', 'tan', 'kan', 'huai',
|
||||
0x50 => 'zuo', 'keng', 'bi', 'jing', 'di', 'jing', 'ji', 'kuai', 'di', 'jing', 'jian', 'tan', 'li', 'ba', 'wu', 'fen',
|
||||
0x60 => 'zhui', 'po', 'ban', 'tang', 'kun', 'qu', 'tan', 'zhi', 'tuo', 'gan', 'ping', 'dian', 'gua', 'ni', 'tai', 'pi',
|
||||
0x70 => 'jiong', 'yang', 'fo', 'ao', 'lu', 'qiu', 'mu', 'ke', 'gou', 'xue', 'ba', 'chi', 'che', 'ling', 'zhu', 'fu',
|
||||
0x80 => 'hu', 'zhi', 'chui', 'la', 'long', 'long', 'lu', 'ao', 'dai', 'pao', 'min', 'xing', 'dong', 'ji', 'he', 'lu',
|
||||
0x90 => 'ci', 'chi', 'lei', 'gai', 'yin', 'hou', 'dui', 'zhao', 'fu', 'guang', 'yao', 'duo', 'duo', 'gui', 'cha', 'yang',
|
||||
0xA0 => 'yin', 'fa', 'gou', 'yuan', 'die', 'xie', 'ken', 'shang', 'shou', 'e', 'bing', 'dian', 'hong', 'ya', 'kua', 'da',
|
||||
0xB0 => 'ka', 'dang', 'kai', 'hang', 'nao', 'an', 'xing', 'xian', 'yuan', 'bang', 'fu', 'ba', 'yi', 'yin', 'han', 'xu',
|
||||
0xC0 => 'chui', 'qin', 'geng', 'ai', 'beng', 'fang', 'que', 'yong', 'jun', 'jia', 'di', 'mai', 'lang', 'juan', 'cheng', 'shan',
|
||||
0xD0 => 'jin', 'zhe', 'lie', 'lie', 'bu', 'cheng', 'hua', 'bu', 'shi', 'xun', 'guo', 'jiong', 'ye', 'nian', 'di', 'yu',
|
||||
0xE0 => 'bu', 'ya', 'quan', 'sui', 'pi', 'qing', 'wan', 'ju', 'lun', 'zheng', 'kong', 'chong', 'dong', 'dai', 'tan', 'an',
|
||||
0xF0 => 'cai', 'chu', 'beng', 'kan', 'zhi', 'duo', 'yi', 'zhi', 'yi', 'pei', 'ji', 'zhun', 'qi', 'sao', 'ju', 'ni',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x58.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x58.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'ku', 'ke', 'tang', 'kun', 'ni', 'jian', 'dui', 'jin', 'gang', 'yu', 'e', 'peng', 'gu', 'tu', 'leng', 'fang',
|
||||
0x10 => 'ya', 'qian', 'kun', 'an', 'shen', 'duo', 'nao', 'tu', 'cheng', 'yin', 'hun', 'bi', 'lian', 'guo', 'die', 'zhuan',
|
||||
0x20 => 'hou', 'bao', 'bao', 'yu', 'di', 'mao', 'jie', 'ruan', 'ye', 'geng', 'kan', 'zong', 'yu', 'huang', 'e', 'yao',
|
||||
0x30 => 'yan', 'bao', 'ci', 'mei', 'chang', 'du', 'tuo', 'yin', 'feng', 'zhong', 'jie', 'jin', 'heng', 'gang', 'chun', 'jian',
|
||||
0x40 => 'ping', 'lei', 'xiang', 'huang', 'leng', 'duan', 'wan', 'xuan', 'ji', 'ji', 'kuai', 'ying', 'ta', 'cheng', 'yong', 'kai',
|
||||
0x50 => 'su', 'su', 'shi', 'mi', 'ta', 'weng', 'cheng', 'tu', 'tang', 'que', 'zhong', 'li', 'zhong', 'bang', 'sai', 'zang',
|
||||
0x60 => 'dui', 'tian', 'wu', 'zheng', 'xun', 'ge', 'zhen', 'ai', 'gong', 'yan', 'kan', 'tian', 'yuan', 'wen', 'xie', 'liu',
|
||||
0x70 => 'hai', 'lang', 'chang', 'peng', 'beng', 'chen', 'lu', 'lu', 'ou', 'qian', 'mei', 'mo', 'zhuan', 'shuang', 'shu', 'lou',
|
||||
0x80 => 'chi', 'man', 'biao', 'jing', 'ce', 'shu', 'zhi', 'zhang', 'kan', 'yong', 'dian', 'chen', 'zhi', 'xi', 'guo', 'qiang',
|
||||
0x90 => 'jin', 'di', 'shang', 'mu', 'cui', 'yan', 'ta', 'zeng', 'qian', 'qiang', 'liang', 'wei', 'zhui', 'qiao', 'zeng', 'xu',
|
||||
0xA0 => 'shan', 'shan', 'ba', 'pu', 'kuai', 'dong', 'fan', 'que', 'mo', 'dun', 'dun', 'zun', 'di', 'sheng', 'duo', 'duo',
|
||||
0xB0 => 'tan', 'deng', 'mu', 'fen', 'huang', 'tan', 'da', 'ye', 'zhu', 'jian', 'ao', 'qiang', 'ji', 'qiao', 'ken', 'yi',
|
||||
0xC0 => 'pi', 'bi', 'dian', 'jiang', 'ye', 'yong', 'xue', 'tan', 'lan', 'ju', 'huai', 'dang', 'rang', 'qian', 'xun', 'xian',
|
||||
0xD0 => 'xi', 'he', 'ai', 'ya', 'dao', 'hao', 'ruan', 'jin', 'lei', 'kuang', 'lu', 'yan', 'tan', 'wei', 'huai', 'long',
|
||||
0xE0 => 'long', 'rui', 'li', 'lin', 'rang', 'chan', 'xun', 'yan', 'lei', 'ba', 'wan', 'shi', 'ren', 'san', 'zhuang', 'zhuang',
|
||||
0xF0 => 'sheng', 'yi', 'mai', 'ke', 'zhu', 'zhuang', 'hu', 'hu', 'kun', 'yi', 'hu', 'xu', 'kun', 'shou', 'mang', 'zun',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x59.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x59.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'shou', 'yi', 'zhi', 'gu', 'chu', 'jiang', 'feng', 'bei', 'zhai', 'bian', 'sui', 'qun', 'ling', 'fu', 'cuo', 'xia',
|
||||
0x10 => 'xiong', 'xie', 'nao', 'xia', 'kui', 'xi', 'wai', 'yuan', 'mao', 'su', 'duo', 'duo', 'ye', 'qing', 'wai', 'gou',
|
||||
0x20 => 'gou', 'qi', 'meng', 'meng', 'yin', 'huo', 'chen', 'da', 'ze', 'tian', 'tai', 'fu', 'guai', 'yao', 'yang', 'hang',
|
||||
0x30 => 'gao', 'shi', 'tao', 'tai', 'tou', 'yan', 'bi', 'yi', 'kua', 'jia', 'duo', 'hua', 'kuang', 'yun', 'jia', 'ba',
|
||||
0x40 => 'en', 'lian', 'huan', 'di', 'yan', 'pao', 'juan', 'qi', 'nai', 'feng', 'xie', 'fen', 'dian', 'yang', 'kui', 'zou',
|
||||
0x50 => 'huan', 'qi', 'kai', 'zha', 'ben', 'yi', 'jiang', 'tao', 'zang', 'ben', 'xi', 'huang', 'fei', 'diao', 'xun', 'beng',
|
||||
0x60 => 'dian', 'ao', 'she', 'weng', 'ha', 'ao', 'wu', 'ao', 'jiang', 'lian', 'duo', 'yun', 'jiang', 'shi', 'fen', 'huo',
|
||||
0x70 => 'bi', 'luan', 'duo', 'nu', 'nu', 'ding', 'nai', 'qian', 'jian', 'ta', 'jiu', 'nuan', 'cha', 'hao', 'xian', 'fan',
|
||||
0x80 => 'ji', 'shuo', 'ru', 'fei', 'wang', 'hong', 'zhuang', 'fu', 'ma', 'dan', 'ren', 'fu', 'jing', 'yan', 'hai', 'wen',
|
||||
0x90 => 'zhong', 'pa', 'du', 'ji', 'keng', 'zhong', 'yao', 'jin', 'yun', 'miao', 'fou', 'chi', 'yue', 'zhuang', 'niu', 'yan',
|
||||
0xA0 => 'na', 'xin', 'fen', 'bi', 'yu', 'tuo', 'feng', 'wan', 'fang', 'wu', 'yu', 'gui', 'du', 'ba', 'ni', 'zhou',
|
||||
0xB0 => 'zhuo', 'zhao', 'da', 'nai', 'yuan', 'tou', 'xian', 'zhi', 'e', 'mei', 'mo', 'qi', 'bi', 'shen', 'qie', 'e',
|
||||
0xC0 => 'he', 'xu', 'fa', 'zheng', 'min', 'ban', 'mu', 'fu', 'ling', 'zi', 'zi', 'shi', 'ran', 'shan', 'yang', 'man',
|
||||
0xD0 => 'jie', 'gu', 'si', 'xing', 'wei', 'zi', 'ju', 'shan', 'pin', 'ren', 'yao', 'dong', 'jiang', 'shu', 'ji', 'gai',
|
||||
0xE0 => 'xiang', 'hua', 'juan', 'jiao', 'gou', 'lao', 'jian', 'jian', 'yi', 'nian', 'zhi', 'ji', 'ji', 'xian', 'heng', 'guang',
|
||||
0xF0 => 'jun', 'kua', 'yan', 'ming', 'lie', 'pei', 'e', 'you', 'yan', 'cha', 'shen', 'yin', 'shi', 'gui', 'quan', 'zi',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x5a.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x5a.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'song', 'wei', 'hong', 'wa', 'lou', 'ya', 'rao', 'jiao', 'luan', 'ping', 'xian', 'shao', 'li', 'cheng', 'xie', 'mang',
|
||||
0x10 => 'fu', 'suo', 'mei', 'wei', 'ke', 'chuo', 'chuo', 'ting', 'niang', 'xing', 'nan', 'yu', 'na', 'pou', 'nei', 'juan',
|
||||
0x20 => 'shen', 'zhi', 'han', 'di', 'zhuang', 'e', 'pin', 'tui', 'xian', 'mian', 'wu', 'yan', 'wu', 'ai', 'yan', 'yu',
|
||||
0x30 => 'si', 'yu', 'wa', 'li', 'xian', 'ju', 'qu', 'zhui', 'qi', 'xian', 'zhuo', 'dong', 'chang', 'lu', 'ai', 'e',
|
||||
0x40 => 'e', 'lou', 'mian', 'cong', 'pou', 'ju', 'po', 'cai', 'ling', 'wan', 'biao', 'xiao', 'shu', 'qi', 'hui', 'fan',
|
||||
0x50 => 'wo', 'rui', 'tan', 'fei', 'fei', 'jie', 'tian', 'ni', 'quan', 'jing', 'hun', 'jing', 'qian', 'dian', 'xing', 'hu',
|
||||
0x60 => 'wan', 'lai', 'bi', 'yin', 'chou', 'nao', 'fu', 'jing', 'lun', 'an', 'lan', 'kun', 'yin', 'ya', 'ju', 'li',
|
||||
0x70 => 'dian', 'xian', 'hua', 'hua', 'ying', 'chan', 'shen', 'ting', 'dang', 'yao', 'wu', 'nan', 'chuo', 'jia', 'tou', 'xu',
|
||||
0x80 => 'yu', 'wei', 'di', 'rou', 'mei', 'dan', 'ruan', 'qin', 'hui', 'wo', 'qian', 'chun', 'miao', 'fu', 'jie', 'duan',
|
||||
0x90 => 'yi', 'zhong', 'mei', 'huang', 'mian', 'an', 'ying', 'xuan', 'jie', 'wei', 'mei', 'yuan', 'zheng', 'qiu', 'shi', 'xie',
|
||||
0xA0 => 'tuo', 'lian', 'mao', 'ran', 'si', 'pian', 'wei', 'wa', 'jiu', 'hu', 'ao', 'qie', 'bao', 'xu', 'tou', 'gui',
|
||||
0xB0 => 'chu', 'yao', 'pi', 'xi', 'yuan', 'ying', 'rong', 'ru', 'chi', 'liu', 'mei', 'pan', 'ao', 'ma', 'gou', 'kui',
|
||||
0xC0 => 'qin', 'jia', 'sao', 'zhen', 'yuan', 'jie', 'rong', 'ming', 'ying', 'ji', 'su', 'niao', 'xian', 'tao', 'pang', 'lang',
|
||||
0xD0 => 'nao', 'bao', 'ai', 'pi', 'pin', 'yi', 'piao', 'yu', 'lei', 'xuan', 'man', 'yi', 'zhang', 'kang', 'yong', 'ni',
|
||||
0xE0 => 'li', 'di', 'gui', 'yan', 'jin', 'zhuan', 'chang', 'ze', 'han', 'nen', 'lao', 'mo', 'zhe', 'hu', 'hu', 'ao',
|
||||
0xF0 => 'nen', 'qiang', 'ma', 'pie', 'gu', 'wu', 'qiao', 'tuo', 'zhan', 'mao', 'xian', 'xian', 'mo', 'liao', 'lian', 'hua',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x5b.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x5b.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'gui', 'deng', 'zhi', 'xu', 'yi', 'hua', 'xi', 'kui', 'rao', 'xi', 'yan', 'chan', 'jiao', 'mei', 'fan', 'fan',
|
||||
0x10 => 'xian', 'yi', 'hui', 'jiao', 'fu', 'shi', 'bi', 'shan', 'sui', 'qiang', 'lian', 'huan', 'xin', 'niao', 'dong', 'yi',
|
||||
0x20 => 'can', 'ai', 'niang', 'ning', 'ma', 'tiao', 'chou', 'jin', 'ci', 'yu', 'pin', 'rong', 'ru', 'nai', 'yan', 'tai',
|
||||
0x30 => 'ying', 'can', 'niao', 'yue', 'ying', 'mian', 'bi', 'ma', 'shen', 'xing', 'ni', 'du', 'liu', 'yuan', 'lan', 'yan',
|
||||
0x40 => 'shuang', 'ling', 'jiao', 'niang', 'lan', 'qian', 'ying', 'shuang', 'hui', 'quan', 'mi', 'li', 'luan', 'yan', 'zhu', 'lan',
|
||||
0x50 => 'zi', 'jie', 'jue', 'jue', 'kong', 'yun', 'ma', 'zi', 'cun', 'sun', 'fu', 'bei', 'zi', 'xiao', 'xin', 'meng',
|
||||
0x60 => 'si', 'tai', 'bao', 'ji', 'gu', 'nu', 'xue', 'you', 'zhuan', 'hai', 'luan', 'sun', 'nao', 'mie', 'cong', 'qian',
|
||||
0x70 => 'shu', 'can', 'ya', 'zi', 'ni', 'fu', 'zi', 'li', 'xue', 'bo', 'ru', 'nai', 'nie', 'nie', 'ying', 'luan',
|
||||
0x80 => 'mian', 'ning', 'rong', 'ta', 'gui', 'zhai', 'qiong', 'yu', 'shou', 'an', 'tu', 'song', 'wan', 'rou', 'yao', 'hong',
|
||||
0x90 => 'yi', 'jing', 'zhun', 'mi', 'zhu', 'dang', 'hong', 'zong', 'guan', 'zhou', 'ding', 'wan', 'yi', 'bao', 'shi', 'shi',
|
||||
0xA0 => 'chong', 'shen', 'ke', 'xuan', 'shi', 'you', 'huan', 'yi', 'tiao', 'shi', 'xian', 'gong', 'cheng', 'qun', 'gong', 'xiao',
|
||||
0xB0 => 'zai', 'zha', 'bao', 'hai', 'yan', 'xiao', 'jia', 'shen', 'chen', 'rong', 'huang', 'mi', 'kou', 'kuan', 'bin', 'su',
|
||||
0xC0 => 'cai', 'zan', 'ji', 'yuan', 'ji', 'yin', 'mi', 'kou', 'qing', 'que', 'zhen', 'jian', 'fu', 'ning', 'bing', 'huan',
|
||||
0xD0 => 'mei', 'qin', 'han', 'yu', 'shi', 'ning', 'jin', 'ning', 'zhi', 'yu', 'bao', 'kuan', 'ning', 'qin', 'mo', 'cha',
|
||||
0xE0 => 'ju', 'gua', 'qin', 'hu', 'wu', 'liao', 'shi', 'ning', 'zhai', 'shen', 'wei', 'xie', 'kuan', 'hui', 'liao', 'jun',
|
||||
0xF0 => 'huan', 'yi', 'yi', 'bao', 'qin', 'chong', 'bao', 'feng', 'cun', 'dui', 'si', 'xun', 'dao', 'lu', 'dui', 'shou',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x5c.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x5c.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'po', 'feng', 'zhuan', 'fu', 'she', 'ke', 'jiang', 'jiang', 'zhuan', 'wei', 'zun', 'xun', 'shu', 'dui', 'dao', 'xiao',
|
||||
0x10 => 'jie', 'shao', 'er', 'er', 'er', 'ga', 'jian', 'shu', 'chen', 'shang', 'shang', 'mo', 'ga', 'chang', 'liao', 'xian',
|
||||
0x20 => 'xian', 'kun', 'you', 'wang', 'you', 'liao', 'liao', 'yao', 'mang', 'wang', 'wang', 'wang', 'ga', 'yao', 'duo', 'kui',
|
||||
0x30 => 'zhong', 'jiu', 'gan', 'gu', 'gan', 'tui', 'gan', 'gan', 'shi', 'yin', 'chi', 'kao', 'ni', 'jin', 'wei', 'niao',
|
||||
0x40 => 'ju', 'pi', 'ceng', 'xi', 'bi', 'ju', 'jie', 'tian', 'qu', 'ti', 'jie', 'wu', 'diao', 'shi', 'shi', 'ping',
|
||||
0x50 => 'ji', 'xie', 'zhen', 'xie', 'ni', 'zhan', 'xi', 'wei', 'man', 'e', 'lou', 'ping', 'ti', 'fei', 'shu', 'xie',
|
||||
0x60 => 'tu', 'lu', 'lu', 'xi', 'ceng', 'lu', 'ju', 'xie', 'ju', 'jue', 'liao', 'jue', 'shu', 'xi', 'che', 'tun',
|
||||
0x70 => 'ni', 'shan', 'wa', 'xian', 'li', 'e', 'dao', 'hui', 'long', 'yi', 'qi', 'ren', 'wu', 'han', 'shen', 'yu',
|
||||
0x80 => 'chu', 'sui', 'qi', 'ren', 'yue', 'ban', 'yao', 'ang', 'ya', 'wu', 'jie', 'e', 'ji', 'qian', 'fen', 'wan',
|
||||
0x90 => 'qi', 'cen', 'qian', 'qi', 'cha', 'jie', 'qu', 'gang', 'xian', 'ao', 'lan', 'dao', 'ba', 'zuo', 'zuo', 'yang',
|
||||
0xA0 => 'ju', 'gang', 'ke', 'gou', 'xue', 'po', 'li', 'tiao', 'qu', 'yan', 'fu', 'xiu', 'jia', 'ling', 'tuo', 'pi',
|
||||
0xB0 => 'ao', 'dai', 'kuang', 'yue', 'qu', 'hu', 'po', 'min', 'an', 'tiao', 'ling', 'chi', 'ping', 'dong', 'han', 'kui',
|
||||
0xC0 => 'xiu', 'mao', 'tong', 'xue', 'yi', 'bian', 'he', 'ba', 'luo', 'e', 'fu', 'xun', 'die', 'lu', 'en', 'er',
|
||||
0xD0 => 'gai', 'quan', 'dong', 'yi', 'mu', 'shi', 'an', 'wei', 'huan', 'zhi', 'mi', 'li', 'ji', 'tong', 'wei', 'you',
|
||||
0xE0 => 'gu', 'xia', 'li', 'yao', 'jiao', 'zheng', 'luan', 'jiao', 'e', 'e', 'yu', 'xie', 'bu', 'qiao', 'qun', 'feng',
|
||||
0xF0 => 'feng', 'nao', 'li', 'you', 'xian', 'hong', 'dao', 'shen', 'cheng', 'tu', 'geng', 'jun', 'hao', 'xia', 'yin', 'yu',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x5d.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x5d.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'lang', 'kan', 'lao', 'lai', 'xian', 'que', 'kong', 'chong', 'chong', 'ta', 'lin', 'hua', 'ju', 'lai', 'qi', 'min',
|
||||
0x10 => 'kun', 'kun', 'zu', 'gu', 'cui', 'ya', 'ya', 'gang', 'lun', 'lun', 'leng', 'jue', 'duo', 'zheng', 'guo', 'yin',
|
||||
0x20 => 'dong', 'han', 'zheng', 'wei', 'xiao', 'pi', 'yan', 'song', 'jie', 'beng', 'zu', 'ku', 'dong', 'zhan', 'gu', 'yin',
|
||||
0x30 => 'zi', 'ze', 'huang', 'yu', 'wai', 'yang', 'feng', 'qiu', 'yang', 'ti', 'yi', 'zhi', 'shi', 'zai', 'yao', 'e',
|
||||
0x40 => 'zhu', 'kan', 'lu', 'yan', 'mei', 'han', 'ji', 'ji', 'huan', 'ting', 'sheng', 'mei', 'qian', 'wu', 'yu', 'zong',
|
||||
0x50 => 'lan', 'ke', 'yan', 'yan', 'wei', 'zong', 'cha', 'sui', 'rong', 'ke', 'qin', 'yu', 'ti', 'lou', 'tu', 'dui',
|
||||
0x60 => 'xi', 'weng', 'cang', 'dang', 'rong', 'jie', 'kai', 'liu', 'wu', 'song', 'qiao', 'zi', 'wei', 'beng', 'dian', 'cuo',
|
||||
0x70 => 'qian', 'yong', 'nie', 'cuo', 'ji', 'shi', 'ruo', 'song', 'zong', 'jiang', 'liao', 'kang', 'chan', 'die', 'cen', 'ding',
|
||||
0x80 => 'tu', 'lou', 'zhang', 'zhan', 'zhan', 'ao', 'cao', 'qu', 'qiang', 'cui', 'zui', 'dao', 'dao', 'xi', 'yu', 'pei',
|
||||
0x90 => 'long', 'xiang', 'ceng', 'bo', 'qin', 'jiao', 'yan', 'lao', 'zhan', 'lin', 'liao', 'liao', 'jin', 'deng', 'duo', 'zun',
|
||||
0xA0 => 'jiao', 'gui', 'yao', 'jiao', 'yao', 'jue', 'zhan', 'yi', 'xue', 'nao', 'ye', 'ye', 'yi', 'nie', 'xian', 'ji',
|
||||
0xB0 => 'xie', 'ke', 'xi', 'di', 'ao', 'zui', 'wei', 'yi', 'rong', 'dao', 'ling', 'za', 'yu', 'yue', 'yin', 'ru',
|
||||
0xC0 => 'jie', 'li', 'gui', 'long', 'long', 'dian', 'rong', 'xi', 'ju', 'chan', 'ying', 'kui', 'yan', 'wei', 'nao', 'quan',
|
||||
0xD0 => 'chao', 'cuan', 'luan', 'dian', 'dian', 'nie', 'yan', 'yan', 'yan', 'kui', 'yan', 'chuan', 'kuai', 'chuan', 'zhou', 'huang',
|
||||
0xE0 => 'jing', 'xun', 'chao', 'chao', 'lie', 'gong', 'zuo', 'qiao', 'ju', 'gong', 'ju', 'wu', 'pu', 'pu', 'cha', 'qiu',
|
||||
0xF0 => 'qiu', 'ji', 'yi', 'si', 'ba', 'zhi', 'zhao', 'xiang', 'yi', 'jin', 'xun', 'juan', 'ba', 'xun', 'jin', 'fu',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x5e.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x5e.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'za', 'bi', 'shi', 'bu', 'ding', 'shuai', 'fan', 'nie', 'shi', 'fen', 'pa', 'zhi', 'xi', 'hu', 'dan', 'wei',
|
||||
0x10 => 'zhang', 'tang', 'dai', 'mo', 'pei', 'pa', 'tie', 'bo', 'lian', 'zhi', 'zhou', 'bo', 'zhi', 'di', 'mo', 'yi',
|
||||
0x20 => 'yi', 'ping', 'qia', 'juan', 'ru', 'shuai', 'dai', 'zheng', 'shui', 'qiao', 'zhen', 'shi', 'qun', 'xi', 'bang', 'dai',
|
||||
0x30 => 'gui', 'chou', 'ping', 'zhang', 'san', 'wan', 'dai', 'wei', 'chang', 'sha', 'qi', 'ze', 'guo', 'mao', 'du', 'hou',
|
||||
0x40 => 'zheng', 'xu', 'mi', 'wei', 'wo', 'fu', 'yi', 'bang', 'ping', 'die', 'gong', 'pan', 'huang', 'tao', 'mi', 'jia',
|
||||
0x50 => 'teng', 'hui', 'zhong', 'shan', 'man', 'mu', 'biao', 'guo', 'ze', 'mu', 'bang', 'zhang', 'jing', 'chan', 'fu', 'zhi',
|
||||
0x60 => 'hu', 'fan', 'chuang', 'bi', 'bi', 'zhang', 'mi', 'qiao', 'chan', 'fen', 'meng', 'bang', 'chou', 'mie', 'chu', 'jie',
|
||||
0x70 => 'xian', 'lan', 'gan', 'ping', 'nian', 'jian', 'bing', 'bing', 'xing', 'gan', 'yao', 'huan', 'you', 'you', 'ji', 'guang',
|
||||
0x80 => 'pi', 'ting', 'ze', 'guang', 'zhuang', 'mo', 'qing', 'bi', 'qin', 'dun', 'chuang', 'gui', 'ya', 'bai', 'jie', 'xu',
|
||||
0x90 => 'lu', 'wu', 'zhuang', 'ku', 'ying', 'di', 'pao', 'dian', 'ya', 'miao', 'geng', 'ci', 'fu', 'tong', 'pang', 'fei',
|
||||
0xA0 => 'xiang', 'yi', 'zhi', 'tiao', 'zhi', 'xiu', 'du', 'zuo', 'xiao', 'tu', 'gui', 'ku', 'mang', 'ting', 'you', 'bu',
|
||||
0xB0 => 'bing', 'cheng', 'lai', 'bi', 'ji', 'an', 'shu', 'kang', 'yong', 'tuo', 'song', 'shu', 'qing', 'yu', 'yu', 'miao',
|
||||
0xC0 => 'sou', 'ce', 'xiang', 'fei', 'jiu', 'e', 'gui', 'liu', 'sha', 'lian', 'lang', 'sou', 'zhi', 'pou', 'qing', 'jiu',
|
||||
0xD0 => 'jiu', 'jin', 'ao', 'kuo', 'lou', 'yin', 'liao', 'dai', 'lu', 'yi', 'chu', 'chan', 'tu', 'si', 'xin', 'miao',
|
||||
0xE0 => 'chang', 'wu', 'fei', 'guang', 'ku', 'kuai', 'bi', 'qiang', 'xie', 'lin', 'lin', 'liao', 'lu', 'ji', 'ying', 'xian',
|
||||
0xF0 => 'ting', 'yong', 'li', 'ting', 'yin', 'xun', 'yan', 'ting', 'di', 'pai', 'jian', 'hui', 'nai', 'hui', 'gong', 'nian',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x5f.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x5f.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'kai', 'bian', 'yi', 'qi', 'nong', 'fen', 'ju', 'yan', 'yi', 'zang', 'bi', 'yi', 'yi', 'er', 'san', 'shi',
|
||||
0x10 => 'er', 'shi', 'shi', 'gong', 'diao', 'yin', 'hu', 'fu', 'hong', 'wu', 'tui', 'chi', 'jiang', 'ba', 'shen', 'di',
|
||||
0x20 => 'zhang', 'jue', 'tao', 'fu', 'di', 'mi', 'xian', 'hu', 'chao', 'nu', 'jing', 'zhen', 'yi', 'mi', 'quan', 'wan',
|
||||
0x30 => 'shao', 'ruo', 'xuan', 'jing', 'diao', 'zhang', 'jiang', 'qiang', 'peng', 'dan', 'qiang', 'bi', 'bi', 'she', 'dan', 'jian',
|
||||
0x40 => 'gou', 'ge', 'fa', 'bi', 'kou', 'jian', 'bie', 'xiao', 'dan', 'guo', 'jiang', 'hong', 'mi', 'guo', 'wan', 'jue',
|
||||
0x50 => 'ji', 'ji', 'gui', 'dang', 'lu', 'lu', 'tuan', 'hui', 'zhi', 'hui', 'hui', 'yi', 'yi', 'yi', 'yi', 'yue',
|
||||
0x60 => 'yue', 'shan', 'xing', 'wen', 'tong', 'yan', 'yan', 'yu', 'chi', 'cai', 'biao', 'diao', 'bin', 'peng', 'yong', 'piao',
|
||||
0x70 => 'zhang', 'ying', 'chi', 'chi', 'zhuo', 'tuo', 'ji', 'fang', 'zhong', 'yi', 'wang', 'che', 'bi', 'di', 'ling', 'fu',
|
||||
0x80 => 'wang', 'zheng', 'cu', 'wang', 'jing', 'dai', 'xi', 'xun', 'hen', 'yang', 'huai', 'lu', 'hou', 'wang', 'cheng', 'zhi',
|
||||
0x90 => 'xu', 'jing', 'tu', 'cong', 'zhi', 'lai', 'cong', 'de', 'pai', 'xi', 'dong', 'ji', 'chang', 'zhi', 'cong', 'zhou',
|
||||
0xA0 => 'lai', 'yu', 'xie', 'jie', 'jian', 'shi', 'jia', 'bian', 'huang', 'fu', 'xun', 'wei', 'pang', 'yao', 'wei', 'xi',
|
||||
0xB0 => 'zheng', 'piao', 'ti', 'de', 'zheng', 'zheng', 'bie', 'de', 'chong', 'che', 'jiao', 'hui', 'jiao', 'hui', 'mei', 'long',
|
||||
0xC0 => 'xiang', 'bao', 'qu', 'xin', 'xin', 'bi', 'yi', 'le', 'ren', 'dao', 'ding', 'gai', 'ji', 'ren', 'ren', 'chan',
|
||||
0xD0 => 'tan', 'te', 'te', 'gan', 'qi', 'shi', 'cun', 'zhi', 'wang', 'mang', 'xi', 'fan', 'ying', 'tian', 'min', 'wen',
|
||||
0xE0 => 'zhong', 'chong', 'wu', 'ji', 'wu', 'xi', 'jia', 'you', 'wan', 'cong', 'song', 'kuai', 'yu', 'bian', 'zhi', 'qi',
|
||||
0xF0 => 'cui', 'chen', 'tai', 'tun', 'qian', 'nian', 'hun', 'xiong', 'niu', 'kuang', 'xian', 'xin', 'kang', 'hu', 'kai', 'fen',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x60.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x60.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'huai', 'tai', 'song', 'wu', 'ou', 'chang', 'chuang', 'ju', 'yi', 'bao', 'chao', 'min', 'pei', 'zuo', 'zen', 'yang',
|
||||
0x10 => 'ju', 'ban', 'nu', 'nao', 'zheng', 'pa', 'bu', 'tie', 'hu', 'hu', 'ju', 'da', 'lian', 'si', 'chou', 'di',
|
||||
0x20 => 'dai', 'yi', 'tu', 'you', 'fu', 'ji', 'peng', 'xing', 'yuan', 'ni', 'guai', 'fu', 'xi', 'bi', 'you', 'qie',
|
||||
0x30 => 'xuan', 'cong', 'bing', 'huang', 'xu', 'chu', 'bi', 'shu', 'xi', 'tan', 'yong', 'zong', 'dui', 'mo', 'zhi', 'yi',
|
||||
0x40 => 'shi', 'nen', 'xun', 'shi', 'xi', 'lao', 'heng', 'kuang', 'mou', 'zhi', 'xie', 'lian', 'tiao', 'huang', 'die', 'hao',
|
||||
0x50 => 'kong', 'gui', 'heng', 'xi', 'jiao', 'shu', 'si', 'hu', 'qiu', 'yang', 'hui', 'hui', 'chi', 'jia', 'yi', 'xiong',
|
||||
0x60 => 'guai', 'lin', 'hui', 'zi', 'xu', 'chi', 'shang', 'nu', 'hen', 'en', 'ke', 'dong', 'tian', 'gong', 'quan', 'xi',
|
||||
0x70 => 'qia', 'yue', 'peng', 'ken', 'de', 'hui', 'e', 'xiao', 'tong', 'yan', 'kai', 'ce', 'nao', 'yun', 'mang', 'yong',
|
||||
0x80 => 'yong', 'yuan', 'pi', 'kun', 'qiao', 'yue', 'yu', 'tu', 'jie', 'xi', 'zhe', 'lin', 'ti', 'han', 'hao', 'qie',
|
||||
0x90 => 'ti', 'bu', 'yi', 'qian', 'hui', 'xi', 'bei', 'man', 'yi', 'heng', 'song', 'quan', 'cheng', 'kui', 'wu', 'wu',
|
||||
0xA0 => 'you', 'li', 'liang', 'huan', 'cong', 'yi', 'yue', 'li', 'nin', 'nao', 'e', 'que', 'xuan', 'qian', 'wu', 'min',
|
||||
0xB0 => 'cong', 'fei', 'bei', 'duo', 'cui', 'chang', 'men', 'san', 'ji', 'guan', 'guan', 'xing', 'dao', 'qi', 'kong', 'tian',
|
||||
0xC0 => 'lun', 'xi', 'kan', 'gun', 'ni', 'qing', 'chou', 'dun', 'guo', 'zhan', 'jing', 'wan', 'yuan', 'jin', 'ji', 'lan',
|
||||
0xD0 => 'yu', 'huo', 'he', 'quan', 'tan', 'ti', 'ti', 'nie', 'wang', 'chuo', 'hu', 'hun', 'xi', 'chang', 'xin', 'wei',
|
||||
0xE0 => 'hui', 'e', 'suo', 'zong', 'jian', 'yong', 'dian', 'ju', 'can', 'cheng', 'de', 'bei', 'qie', 'can', 'dan', 'guan',
|
||||
0xF0 => 'duo', 'nao', 'yun', 'xiang', 'zhui', 'die', 'huang', 'chun', 'qiong', 're', 'xing', 'ce', 'bian', 'min', 'zong', 'ti',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x61.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x61.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'qiao', 'chou', 'bei', 'xuan', 'wei', 'ge', 'qian', 'wei', 'yu', 'yu', 'bi', 'xuan', 'huan', 'min', 'bi', 'yi',
|
||||
0x10 => 'mian', 'yong', 'kai', 'dang', 'yin', 'e', 'chen', 'mao', 'qia', 'ke', 'yu', 'ai', 'qie', 'yan', 'nuo', 'gan',
|
||||
0x20 => 'yun', 'zong', 'sai', 'leng', 'fen', 'ying', 'kui', 'kui', 'que', 'gong', 'yun', 'su', 'su', 'qi', 'yao', 'song',
|
||||
0x30 => 'huang', 'ji', 'gu', 'ju', 'chuang', 'ni', 'xie', 'kai', 'zheng', 'yong', 'cao', 'xun', 'shen', 'bo', 'kai', 'yuan',
|
||||
0x40 => 'xi', 'hun', 'yong', 'yang', 'li', 'sao', 'tao', 'yin', 'ci', 'xu', 'qian', 'tai', 'huang', 'yun', 'shen', 'ming',
|
||||
0x50 => 'gong', 'she', 'cong', 'piao', 'mu', 'mu', 'guo', 'chi', 'can', 'can', 'can', 'cui', 'min', 'te', 'zhang', 'tong',
|
||||
0x60 => 'ao', 'shuang', 'man', 'guan', 'que', 'zao', 'jiu', 'hui', 'kai', 'lian', 'ou', 'song', 'qin', 'yin', 'lu', 'shang',
|
||||
0x70 => 'wei', 'tuan', 'man', 'qian', 'she', 'yong', 'qing', 'kang', 'di', 'zhi', 'lou', 'juan', 'qi', 'qi', 'yu', 'ping',
|
||||
0x80 => 'liao', 'cong', 'you', 'chong', 'zhi', 'tong', 'cheng', 'qi', 'qu', 'peng', 'bei', 'bie', 'qiong', 'jiao', 'zeng', 'chi',
|
||||
0x90 => 'lian', 'ping', 'kui', 'hui', 'qiao', 'cheng', 'yin', 'yin', 'xi', 'xi', 'dan', 'tan', 'duo', 'dui', 'dui', 'su',
|
||||
0xA0 => 'jue', 'ce', 'xiao', 'fan', 'fen', 'lao', 'lao', 'chong', 'han', 'qi', 'xian', 'min', 'jing', 'liao', 'wu', 'can',
|
||||
0xB0 => 'jue', 'cu', 'xian', 'tan', 'sheng', 'pi', 'yi', 'chu', 'xian', 'nao', 'dan', 'tan', 'jing', 'song', 'han', 'jiao',
|
||||
0xC0 => 'wei', 'xuan', 'dong', 'qin', 'qin', 'ju', 'cao', 'ken', 'xie', 'ying', 'ao', 'mao', 'yi', 'lin', 'se', 'jun',
|
||||
0xD0 => 'huai', 'men', 'lan', 'ai', 'lin', 'yan', 'kuo', 'xia', 'chi', 'yu', 'yin', 'dai', 'meng', 'ai', 'meng', 'dui',
|
||||
0xE0 => 'qi', 'mo', 'lan', 'men', 'chou', 'zhi', 'nuo', 'nuo', 'yan', 'yang', 'bo', 'zhi', 'kuang', 'kuang', 'you', 'fu',
|
||||
0xF0 => 'liu', 'mie', 'cheng', 'hui', 'chan', 'meng', 'lan', 'huai', 'xuan', 'rang', 'chan', 'ji', 'ju', 'huan', 'she', 'yi',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x62.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x62.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'lian', 'nan', 'mi', 'tang', 'jue', 'gang', 'gang', 'zhuang', 'ge', 'yue', 'wu', 'jian', 'xu', 'shu', 'rong', 'xi',
|
||||
0x10 => 'cheng', 'wo', 'jie', 'ge', 'jian', 'qiang', 'huo', 'qiang', 'zhan', 'dong', 'qi', 'jia', 'die', 'zei', 'jia', 'ji',
|
||||
0x20 => 'zhi', 'kan', 'ji', 'kui', 'gai', 'deng', 'zhan', 'qiang', 'ge', 'jian', 'jie', 'yu', 'jian', 'yan', 'lu', 'hu',
|
||||
0x30 => 'zhan', 'xi', 'xi', 'chuo', 'dai', 'qu', 'hu', 'hu', 'hu', 'e', 'shi', 'ti', 'mao', 'hu', 'li', 'fang',
|
||||
0x40 => 'suo', 'bian', 'dian', 'jiong', 'shang', 'yi', 'yi', 'shan', 'hu', 'fei', 'yan', 'shou', 'shou', 'cai', 'zha', 'qiu',
|
||||
0x50 => 'le', 'pu', 'ba', 'da', 'reng', 'fan', 'ru', 'zai', 'tuo', 'zhang', 'diao', 'kang', 'yu', 'ku', 'gan', 'shen',
|
||||
0x60 => 'cha', 'tuo', 'gu', 'kou', 'wu', 'den', 'qian', 'zhi', 'ren', 'kuo', 'men', 'sao', 'yang', 'niu', 'ban', 'che',
|
||||
0x70 => 'rao', 'xi', 'qian', 'ban', 'jia', 'yu', 'fu', 'ao', 'xi', 'pi', 'zhi', 'zhi', 'e', 'den', 'zhao', 'cheng',
|
||||
0x80 => 'ji', 'yan', 'kuang', 'bian', 'chao', 'ju', 'wen', 'hu', 'yue', 'jue', 'ba', 'qin', 'dan', 'zheng', 'yun', 'wan',
|
||||
0x90 => 'ne', 'yi', 'shu', 'zhua', 'pou', 'tou', 'dou', 'kang', 'zhe', 'pou', 'fu', 'pao', 'ba', 'ao', 'ze', 'tuan',
|
||||
0xA0 => 'kou', 'lun', 'qiang', 'yun', 'hu', 'bao', 'bing', 'zhi', 'peng', 'tan', 'bu', 'pi', 'tai', 'yao', 'zhen', 'zha',
|
||||
0xB0 => 'yang', 'bao', 'he', 'ni', 'ye', 'di', 'chi', 'pi', 'jia', 'mo', 'mei', 'chen', 'ya', 'chou', 'qu', 'min',
|
||||
0xC0 => 'chu', 'jia', 'fu', 'zha', 'zhu', 'dan', 'chai', 'mu', 'nian', 'la', 'fu', 'pao', 'ban', 'pai', 'lin', 'na',
|
||||
0xD0 => 'guai', 'qian', 'ju', 'ta', 'ba', 'tuo', 'tuo', 'ao', 'ju', 'zhuo', 'pan', 'zhao', 'bai', 'bai', 'di', 'ni',
|
||||
0xE0 => 'ju', 'kuo', 'long', 'jian', 'qia', 'yong', 'lan', 'ning', 'bo', 'ze', 'qian', 'hen', 'kuo', 'shi', 'jie', 'zheng',
|
||||
0xF0 => 'nin', 'gong', 'gong', 'quan', 'shuan', 'cun', 'za', 'kao', 'yi', 'xie', 'ce', 'hui', 'pin', 'zhuai', 'shi', 'na',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x63.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x63.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'bai', 'chi', 'gua', 'zhi', 'kuo', 'duo', 'duo', 'zhi', 'qie', 'an', 'nong', 'zhen', 'ge', 'jiao', 'kua', 'dong',
|
||||
0x10 => 'na', 'tiao', 'lie', 'zha', 'lu', 'die', 'wa', 'jue', 'lie', 'ju', 'zhi', 'luan', 'ya', 'wo', 'ta', 'xie',
|
||||
0x20 => 'nao', 'dang', 'jiao', 'zheng', 'ji', 'hui', 'xian', 'yu', 'ai', 'tuo', 'nuo', 'cuo', 'bo', 'geng', 'ti', 'zhen',
|
||||
0x30 => 'cheng', 'sa', 'sa', 'keng', 'mei', 'long', 'ju', 'peng', 'jian', 'yi', 'ting', 'shan', 'rua', 'wan', 'xie', 'cha',
|
||||
0x40 => 'feng', 'jiao', 'wu', 'jun', 'jiu', 'tong', 'kun', 'huo', 'tu', 'zhuo', 'pou', 'lu', 'ba', 'han', 'shao', 'nie',
|
||||
0x50 => 'juan', 'ze', 'shu', 'ye', 'jue', 'bu', 'wan', 'bu', 'zun', 'yi', 'zhai', 'lu', 'sou', 'tuo', 'lao', 'sun',
|
||||
0x60 => 'bang', 'jian', 'huan', 'dao', 'wei', 'wan', 'qin', 'peng', 'she', 'lie', 'min', 'men', 'fu', 'bai', 'ju', 'dao',
|
||||
0x70 => 'wo', 'ai', 'juan', 'yue', 'zong', 'chen', 'chui', 'jie', 'tu', 'ben', 'na', 'nian', 'ruo', 'zuo', 'wo', 'xi',
|
||||
0x80 => 'xian', 'cheng', 'dian', 'sao', 'lun', 'qing', 'gang', 'duo', 'shou', 'diao', 'pou', 'di', 'zhang', 'hun', 'ji', 'tao',
|
||||
0x90 => 'qia', 'qi', 'pai', 'shu', 'qian', 'ling', 'ye', 'ya', 'jue', 'zheng', 'liang', 'gua', 'yi', 'huo', 'shan', 'zheng',
|
||||
0xA0 => 'e', 'cai', 'tan', 'che', 'bing', 'jie', 'ti', 'kong', 'tui', 'yan', 'cuo', 'zhou', 'ju', 'tian', 'qian', 'ken',
|
||||
0xB0 => 'bai', 'pa', 'jie', 'lu', 'guai', 'ming', 'geng', 'zhi', 'dan', 'meng', 'can', 'sao', 'guan', 'peng', 'yuan', 'nuo',
|
||||
0xC0 => 'jian', 'zheng', 'jiu', 'jian', 'yu', 'yan', 'kui', 'nan', 'hong', 'rou', 'pi', 'wei', 'sai', 'zou', 'xuan', 'miao',
|
||||
0xD0 => 'ti', 'nie', 'cha', 'shi', 'zong', 'zhen', 'yi', 'xun', 'yong', 'bian', 'yang', 'huan', 'yan', 'zan', 'an', 'xu',
|
||||
0xE0 => 'ya', 'wo', 'ke', 'chuai', 'ji', 'ti', 'la', 'la', 'chen', 'kai', 'jiu', 'jiu', 'tu', 'jie', 'hui', 'gen',
|
||||
0xF0 => 'chong', 'xiao', 'die', 'xie', 'yuan', 'qian', 'ye', 'cha', 'zha', 'bei', 'yao', 'wei', 'beng', 'lan', 'wen', 'qin',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x64.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x64.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'chan', 'ge', 'lou', 'zong', 'geng', 'jiao', 'gou', 'qin', 'rong', 'que', 'chou', 'chuai', 'zhan', 'sun', 'sun', 'bo',
|
||||
0x10 => 'chu', 'rong', 'bang', 'cuo', 'sao', 'ke', 'yao', 'dao', 'zhi', 'nu', 'la', 'jian', 'sou', 'qiu', 'gao', 'xian',
|
||||
0x20 => 'shuo', 'sang', 'jin', 'mie', 'e', 'chui', 'nuo', 'shan', 'ta', 'zha', 'tang', 'pan', 'ban', 'da', 'li', 'tao',
|
||||
0x30 => 'hu', 'zhi', 'wa', 'hua', 'qian', 'wen', 'qiang', 'tian', 'zhen', 'e', 'xie', 'nuo', 'quan', 'cha', 'zha', 'ge',
|
||||
0x40 => 'wu', 'en', 'she', 'kang', 'she', 'shu', 'bai', 'yao', 'bin', 'sou', 'tan', 'sa', 'chan', 'suo', 'jiu', 'chong',
|
||||
0x50 => 'chuang', 'guai', 'bing', 'feng', 'shuai', 'di', 'qi', 'sou', 'zhai', 'lian', 'cheng', 'chi', 'guan', 'lu', 'luo', 'lou',
|
||||
0x60 => 'zong', 'gai', 'hu', 'zha', 'chuang', 'tang', 'hua', 'cui', 'nai', 'mo', 'jiang', 'gui', 'ying', 'zhi', 'ao', 'zhi',
|
||||
0x70 => 'nie', 'man', 'chan', 'kou', 'chu', 'she', 'tuan', 'jiao', 'mo', 'mo', 'zhe', 'can', 'keng', 'biao', 'jiang', 'yin',
|
||||
0x80 => 'gou', 'qian', 'liao', 'ji', 'ying', 'jue', 'pie', 'pie', 'lao', 'dun', 'xian', 'ruan', 'gui', 'zan', 'yi', 'xian',
|
||||
0x90 => 'cheng', 'cheng', 'sa', 'nao', 'hong', 'si', 'han', 'guang', 'da', 'zun', 'nian', 'lin', 'zheng', 'hui', 'zhuang', 'jiao',
|
||||
0xA0 => 'ji', 'cao', 'dan', 'dan', 'che', 'bo', 'che', 'jue', 'fu', 'liao', 'ben', 'fu', 'qiao', 'bo', 'cuo', 'zhuo',
|
||||
0xB0 => 'zhuan', 'wei', 'pu', 'qin', 'dun', 'nian', 'hua', 'xie', 'lu', 'jiao', 'cuan', 'ta', 'han', 'qiao', 'wo', 'jian',
|
||||
0xC0 => 'gan', 'yong', 'lei', 'nang', 'lu', 'shan', 'zhuo', 'ze', 'pu', 'chuo', 'ji', 'dang', 'se', 'cao', 'qing', 'qing',
|
||||
0xD0 => 'huan', 'jie', 'qin', 'kuai', 'dan', 'xie', 'ka', 'pi', 'bai', 'ao', 'ju', 'ye', 'e', 'meng', 'sou', 'mi',
|
||||
0xE0 => 'ji', 'tai', 'zhuo', 'dao', 'xing', 'lan', 'ca', 'ju', 'ye', 'ru', 'ye', 'ye', 'ni', 'wo', 'ji', 'bin',
|
||||
0xF0 => 'ning', 'ge', 'zhi', 'zhi', 'kuo', 'mo', 'jian', 'xie', 'lie', 'tan', 'bai', 'sou', 'lu', 'lue', 'rao', 'ti',
|
||||
);
|
25
core/lib/Drupal/Component/Transliteration/data/x65.php
Normal file
25
core/lib/Drupal/Component/Transliteration/data/x65.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Generic transliteration data for the PhpTransliteration class.
|
||||
*/
|
||||
|
||||
$base = array(
|
||||
0x00 => 'pan', 'yang', 'lei', 'ca', 'shu', 'zan', 'nian', 'xian', 'jun', 'huo', 'li', 'la', 'huan', 'ying', 'lu', 'long',
|
||||
0x10 => 'qian', 'qian', 'zan', 'qian', 'lan', 'xian', 'ying', 'mei', 'rang', 'chan', 'ying', 'cuan', 'xie', 'she', 'luo', 'jun',
|
||||
0x20 => 'mi', 'li', 'zan', 'luan', 'tan', 'zuan', 'li', 'dian', 'wa', 'dang', 'jiao', 'jue', 'lan', 'li', 'nang', 'zhi',
|
||||
0x30 => 'gui', 'gui', 'qi', 'xun', 'pu', 'sui', 'shou', 'kao', 'you', 'gai', 'yi', 'gong', 'gan', 'ban', 'fang', 'zheng',
|
||||
0x40 => 'po', 'dian', 'kou', 'min', 'wu', 'gu', 'he', 'ce', 'xiao', 'mi', 'chu', 'ge', 'di', 'xu', 'jiao', 'min',
|
||||
0x50 => 'chen', 'jiu', 'shen', 'duo', 'yu', 'chi', 'ao', 'bai', 'xu', 'jiao', 'duo', 'lian', 'nie', 'bi', 'chang', 'dian',
|
||||
0x60 => 'duo', 'yi', 'gan', 'san', 'ke', 'yan', 'dun', 'ji', 'tou', 'xiao', 'duo', 'jiao', 'jing', 'yang', 'xia', 'min',
|
||||
0x70 => 'shu', 'ai', 'qiao', 'ai', 'zheng', 'di', 'zhen', 'fu', 'shu', 'liao', 'qu', 'xiong', 'yi', 'jiao', 'shan', 'jiao',
|
||||
0x80 => 'zhuo', 'yi', 'lian', 'bi', 'li', 'xiao', 'xiao', 'wen', 'xue', 'qi', 'qi', 'zhai', 'bin', 'jue', 'zhai', 'lang',
|
||||
0x90 => 'fei', 'ban', 'ban', 'lan', 'yu', 'lan', 'wei', 'dou', 'sheng', 'liao', 'jia', 'hu', 'xie', 'jia', 'yu', 'zhen',
|
||||
0xA0 => 'jiao', 'wo', 'tiao', 'dou', 'jin', 'chi', 'yin', 'fu', 'qiang', 'zhan', 'qu', 'zhuo', 'zhan', 'duan', 'cuo', 'si',
|
||||
0xB0 => 'xin', 'zhuo', 'zhuo', 'qin', 'lin', 'zhuo', 'chu', 'duan', 'zhu', 'fang', 'chan', 'hang', 'yu', 'shi', 'pei', 'you',
|
||||
0xC0 => 'mei', 'pang', 'qi', 'zhan', 'mao', 'lu', 'pei', 'pi', 'liu', 'fu', 'fang', 'xuan', 'jing', 'jing', 'ni', 'zu',
|
||||
0xD0 => 'zhao', 'yi', 'liu', 'shao', 'jian', 'yu', 'yi', 'qi', 'zhi', 'fan', 'piao', 'fan', 'zhan', 'kuai', 'sui', 'yu',
|
||||
0xE0 => 'wu', 'ji', 'ji', 'ji', 'huo', 'ri', 'dan', 'jiu', 'zhi', 'zao', 'xie', 'tiao', 'xun', 'xu', 'ga', 'la',
|
||||
0xF0 => 'gan', 'han', 'tai', 'di', 'xu', 'chan', 'shi', 'kuang', 'yang', 'shi', 'wang', 'min', 'min', 'tun', 'chun', 'wu',
|
||||
);
|
Some files were not shown because too many files have changed in this diff Show more
Reference in a new issue