diff --git a/core/core.services.yml b/core/core.services.yml
index 2b27f69..75f6c76 100644
--- a/core/core.services.yml
+++ b/core/core.services.yml
@@ -862,7 +862,7 @@ services:
       - { name: route_processor_outbound }
     arguments: ['@csrf_token']
   transliteration:
-    class: Drupal\Core\Transliteration\PHPTransliteration
+    class: Drupal\Core\Transliteration\PhpTransliteration
   flood:
     class: Drupal\Core\Flood\DatabaseBackend
     arguments: ['@database', '@request_stack']
diff --git a/core/lib/Drupal.php b/core/lib/Drupal.php
index 141686f..ca3f937 100644
--- a/core/lib/Drupal.php
+++ b/core/lib/Drupal.php
@@ -549,7 +549,7 @@ public static function csrfToken() {
   /**
    * Returns the transliteration service.
    *
-   * @return \Drupal\Core\Transliteration\PHPTransliteration
+   * @return \Drupal\Core\Transliteration\PhpTransliteration
    *   The transliteration manager.
    */
   public static function transliteration() {
diff --git a/core/lib/Drupal/Component/Transliteration/PHPTransliteration.php b/core/lib/Drupal/Component/Transliteration/PHPTransliteration.php
deleted file mode 100644
index 175bf17..0000000
--- a/core/lib/Drupal/Component/Transliteration/PHPTransliteration.php
+++ /dev/null
@@ -1,238 +0,0 @@
-<?php
-
-/**
- * @file
- * Definition of \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 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.
-   */
-  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];
-    }
-
-    // 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;
-  }
-}
diff --git a/core/lib/Drupal/Component/Transliteration/PhpTransliteration.php b/core/lib/Drupal/Component/Transliteration/PhpTransliteration.php
new file mode 100644
index 0000000..53cf036
--- /dev/null
+++ b/core/lib/Drupal/Component/Transliteration/PhpTransliteration.php
@@ -0,0 +1,238 @@
+<?php
+
+/**
+ * @file
+ * Definition of \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 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.
+   */
+  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];
+    }
+
+    // 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;
+  }
+}
diff --git a/core/lib/Drupal/Component/Transliteration/data/de.php b/core/lib/Drupal/Component/Transliteration/data/de.php
index 05c0e19..a0b7e78 100644
--- a/core/lib/Drupal/Component/Transliteration/data/de.php
+++ b/core/lib/Drupal/Component/Transliteration/data/de.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * German transliteration data for the PHPTransliteration class.
+ * German transliteration data for the PhpTransliteration class.
  */
 
 $overrides['de'] = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/dk.php b/core/lib/Drupal/Component/Transliteration/data/dk.php
index 08dc305..4a3056a 100644
--- a/core/lib/Drupal/Component/Transliteration/data/dk.php
+++ b/core/lib/Drupal/Component/Transliteration/data/dk.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Danish transliteration data for the PHPTransliteration class.
+ * Danish transliteration data for the PhpTransliteration class.
  */
 
 $overrides['dk'] = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/eo.php b/core/lib/Drupal/Component/Transliteration/data/eo.php
index 739957b..565af19 100644
--- a/core/lib/Drupal/Component/Transliteration/data/eo.php
+++ b/core/lib/Drupal/Component/Transliteration/data/eo.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Esperanto transliteration data for the PHPTransliteration class.
+ * Esperanto transliteration data for the PhpTransliteration class.
  */
 
 $overrides['eo'] = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/kg.php b/core/lib/Drupal/Component/Transliteration/data/kg.php
index 949598d..1f8ad05 100644
--- a/core/lib/Drupal/Component/Transliteration/data/kg.php
+++ b/core/lib/Drupal/Component/Transliteration/data/kg.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Kyrgyz transliteration data for the PHPTransliteration class.
+ * Kyrgyz transliteration data for the PhpTransliteration class.
  */
 
 $overrides['kg'] = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x00.php b/core/lib/Drupal/Component/Transliteration/data/x00.php
index c37451d..8685680 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x00.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x00.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x01.php b/core/lib/Drupal/Component/Transliteration/data/x01.php
index 134e52d..535692a 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x01.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x01.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x02.php b/core/lib/Drupal/Component/Transliteration/data/x02.php
index ba7ffce..b57d54b 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x02.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x02.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x03.php b/core/lib/Drupal/Component/Transliteration/data/x03.php
index 9a593b4..0984281 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x03.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x03.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x04.php b/core/lib/Drupal/Component/Transliteration/data/x04.php
index d609182..a8fee7d 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x04.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x04.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x05.php b/core/lib/Drupal/Component/Transliteration/data/x05.php
index 806cf6e..29b5232 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x05.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x05.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x06.php b/core/lib/Drupal/Component/Transliteration/data/x06.php
index 352ec14..68ea125 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x06.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x06.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x07.php b/core/lib/Drupal/Component/Transliteration/data/x07.php
index 2d8267b..c141b66 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x07.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x07.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x09.php b/core/lib/Drupal/Component/Transliteration/data/x09.php
index d0bd0d6..88c2845 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x09.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x09.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x0a.php b/core/lib/Drupal/Component/Transliteration/data/x0a.php
index dfc5eff..5d14d3f 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x0a.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x0a.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x0b.php b/core/lib/Drupal/Component/Transliteration/data/x0b.php
index 4b62d60..e700c6d 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x0b.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x0b.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x0c.php b/core/lib/Drupal/Component/Transliteration/data/x0c.php
index b65b2d7..51f7f50 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x0c.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x0c.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x0d.php b/core/lib/Drupal/Component/Transliteration/data/x0d.php
index 3b9c055..d92a68c 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x0d.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x0d.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x0e.php b/core/lib/Drupal/Component/Transliteration/data/x0e.php
index bb6f455..03fb5a9 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x0e.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x0e.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x0f.php b/core/lib/Drupal/Component/Transliteration/data/x0f.php
index 7d643d7..addfa75 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x0f.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x0f.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x10.php b/core/lib/Drupal/Component/Transliteration/data/x10.php
index 1f1fd99..9aedcce 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x10.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x10.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x11.php b/core/lib/Drupal/Component/Transliteration/data/x11.php
index 7e43ffb..66d2fe6 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x11.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x11.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x12.php b/core/lib/Drupal/Component/Transliteration/data/x12.php
index bb1af21..1248209 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x12.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x12.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x13.php b/core/lib/Drupal/Component/Transliteration/data/x13.php
index 179971a..73976a8 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x13.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x13.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x14.php b/core/lib/Drupal/Component/Transliteration/data/x14.php
index e702152..8b4995e 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x14.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x14.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x15.php b/core/lib/Drupal/Component/Transliteration/data/x15.php
index 7e012d2..e40fc68 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x15.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x15.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x16.php b/core/lib/Drupal/Component/Transliteration/data/x16.php
index cb48c5d..9d97747 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x16.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x16.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x17.php b/core/lib/Drupal/Component/Transliteration/data/x17.php
index c417f1f..f98d03a 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x17.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x17.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x18.php b/core/lib/Drupal/Component/Transliteration/data/x18.php
index c89cf4d..05c85a4 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x18.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x18.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x1d.php b/core/lib/Drupal/Component/Transliteration/data/x1d.php
index 58a5c8d..ab6b5d4 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x1d.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x1d.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x1e.php b/core/lib/Drupal/Component/Transliteration/data/x1e.php
index 77cdfe5..71b45bb 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x1e.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x1e.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x1f.php b/core/lib/Drupal/Component/Transliteration/data/x1f.php
index 8b49b82..9e0a60e 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x1f.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x1f.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x20.php b/core/lib/Drupal/Component/Transliteration/data/x20.php
index fa8f233..e106953 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x20.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x20.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x21.php b/core/lib/Drupal/Component/Transliteration/data/x21.php
index 6258425..1da0f41 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x21.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x21.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x22.php b/core/lib/Drupal/Component/Transliteration/data/x22.php
index 0419706..e346ffb 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x22.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x22.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x23.php b/core/lib/Drupal/Component/Transliteration/data/x23.php
index d06638c..3cef84f 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x23.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x23.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x24.php b/core/lib/Drupal/Component/Transliteration/data/x24.php
index 48410e8..3e7b33b 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x24.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x24.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x25.php b/core/lib/Drupal/Component/Transliteration/data/x25.php
index 5de415f..786bfce 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x25.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x25.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x26.php b/core/lib/Drupal/Component/Transliteration/data/x26.php
index 37adcc0..c7dc406 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x26.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x26.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x27.php b/core/lib/Drupal/Component/Transliteration/data/x27.php
index d139605..9c001d2 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x27.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x27.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x28.php b/core/lib/Drupal/Component/Transliteration/data/x28.php
index 827561a..456f8e4 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x28.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x28.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x29.php b/core/lib/Drupal/Component/Transliteration/data/x29.php
index 87b0484..98390e6 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x29.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x29.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x2a.php b/core/lib/Drupal/Component/Transliteration/data/x2a.php
index bb8ebc6..93349c5 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x2a.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x2a.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x2e.php b/core/lib/Drupal/Component/Transliteration/data/x2e.php
index 15e2b6c..f9b3b33 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x2e.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x2e.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x2f.php b/core/lib/Drupal/Component/Transliteration/data/x2f.php
index b616a5b..a5e7029 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x2f.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x2f.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x30.php b/core/lib/Drupal/Component/Transliteration/data/x30.php
index ccd379e..c92c0a6 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x30.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x30.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x31.php b/core/lib/Drupal/Component/Transliteration/data/x31.php
index 07f27e6..95b59f4 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x31.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x31.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x32.php b/core/lib/Drupal/Component/Transliteration/data/x32.php
index 9e57093..25cc5f3 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x32.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x32.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x33.php b/core/lib/Drupal/Component/Transliteration/data/x33.php
index 393e2f7..8094290 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x33.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x33.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x34.php b/core/lib/Drupal/Component/Transliteration/data/x34.php
index 143a3dd..1281649 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x34.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x34.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x35.php b/core/lib/Drupal/Component/Transliteration/data/x35.php
index 2625eea..08b6f5d 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x35.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x35.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x36.php b/core/lib/Drupal/Component/Transliteration/data/x36.php
index 4da7fb0..f015cbe 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x36.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x36.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x37.php b/core/lib/Drupal/Component/Transliteration/data/x37.php
index 748e3e6..b3a9b7c 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x37.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x37.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x38.php b/core/lib/Drupal/Component/Transliteration/data/x38.php
index 1361730..b807b9c 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x38.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x38.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x39.php b/core/lib/Drupal/Component/Transliteration/data/x39.php
index 7ae2640..d96877d 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x39.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x39.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x3a.php b/core/lib/Drupal/Component/Transliteration/data/x3a.php
index cce6b9b..e1ae1ad 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x3a.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x3a.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x3b.php b/core/lib/Drupal/Component/Transliteration/data/x3b.php
index 128698b..4ce0a1e 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x3b.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x3b.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x3c.php b/core/lib/Drupal/Component/Transliteration/data/x3c.php
index a2892b9..31267d9 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x3c.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x3c.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x3d.php b/core/lib/Drupal/Component/Transliteration/data/x3d.php
index 03bb558..f83e669 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x3d.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x3d.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x3e.php b/core/lib/Drupal/Component/Transliteration/data/x3e.php
index 2f4fe33..1c2e517 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x3e.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x3e.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x3f.php b/core/lib/Drupal/Component/Transliteration/data/x3f.php
index 8327d31..7b60158 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x3f.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x3f.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x40.php b/core/lib/Drupal/Component/Transliteration/data/x40.php
index 862514f..9e7c307 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x40.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x40.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x41.php b/core/lib/Drupal/Component/Transliteration/data/x41.php
index 1f73ca4..f32b7e5 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x41.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x41.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x42.php b/core/lib/Drupal/Component/Transliteration/data/x42.php
index 58ee4c3..27e7338 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x42.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x42.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x43.php b/core/lib/Drupal/Component/Transliteration/data/x43.php
index 3cf59d9..8291d9d 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x43.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x43.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x44.php b/core/lib/Drupal/Component/Transliteration/data/x44.php
index 9f40531..af44abb 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x44.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x44.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x45.php b/core/lib/Drupal/Component/Transliteration/data/x45.php
index a0b0ce9..0ba25ac 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x45.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x45.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x46.php b/core/lib/Drupal/Component/Transliteration/data/x46.php
index 50998de..3311641 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x46.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x46.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x47.php b/core/lib/Drupal/Component/Transliteration/data/x47.php
index f221a82..58a79c4 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x47.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x47.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x48.php b/core/lib/Drupal/Component/Transliteration/data/x48.php
index 5aa103b..668713d 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x48.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x48.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x49.php b/core/lib/Drupal/Component/Transliteration/data/x49.php
index 349b94d..d9bde7a 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x49.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x49.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x4a.php b/core/lib/Drupal/Component/Transliteration/data/x4a.php
index 4bb817a..60e658b 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x4a.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x4a.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x4b.php b/core/lib/Drupal/Component/Transliteration/data/x4b.php
index 6204cb0..625a880 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x4b.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x4b.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x4c.php b/core/lib/Drupal/Component/Transliteration/data/x4c.php
index 7a06fcd..aa1852c 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x4c.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x4c.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x4d.php b/core/lib/Drupal/Component/Transliteration/data/x4d.php
index 332209f..b77e988 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x4d.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x4d.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x4e.php b/core/lib/Drupal/Component/Transliteration/data/x4e.php
index 79c979e..868c80d 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x4e.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x4e.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x4f.php b/core/lib/Drupal/Component/Transliteration/data/x4f.php
index 35bea5a..01144a5 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x4f.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x4f.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x50.php b/core/lib/Drupal/Component/Transliteration/data/x50.php
index 2c7472d..f3e3e53 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x50.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x50.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x51.php b/core/lib/Drupal/Component/Transliteration/data/x51.php
index 26bc0be..3f00d5a 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x51.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x51.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x52.php b/core/lib/Drupal/Component/Transliteration/data/x52.php
index dd5a06d..c09eddd 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x52.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x52.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x53.php b/core/lib/Drupal/Component/Transliteration/data/x53.php
index 554c956..0af1ffc 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x53.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x53.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x54.php b/core/lib/Drupal/Component/Transliteration/data/x54.php
index a49167c..85b0476 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x54.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x54.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x55.php b/core/lib/Drupal/Component/Transliteration/data/x55.php
index dd047bc..3f16ee5 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x55.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x55.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x56.php b/core/lib/Drupal/Component/Transliteration/data/x56.php
index acb3776..8f34d3c 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x56.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x56.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x57.php b/core/lib/Drupal/Component/Transliteration/data/x57.php
index b7be192..7983c7a 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x57.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x57.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x58.php b/core/lib/Drupal/Component/Transliteration/data/x58.php
index 5e196dc..73a217c 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x58.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x58.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x59.php b/core/lib/Drupal/Component/Transliteration/data/x59.php
index 6f63546..5755e53 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x59.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x59.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x5a.php b/core/lib/Drupal/Component/Transliteration/data/x5a.php
index 478207b..306fce9 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x5a.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x5a.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x5b.php b/core/lib/Drupal/Component/Transliteration/data/x5b.php
index bbdeae8..8f6c4ad 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x5b.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x5b.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x5c.php b/core/lib/Drupal/Component/Transliteration/data/x5c.php
index 8ba4246..a4173f2 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x5c.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x5c.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x5d.php b/core/lib/Drupal/Component/Transliteration/data/x5d.php
index 2a46e7e..f6e5415 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x5d.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x5d.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x5e.php b/core/lib/Drupal/Component/Transliteration/data/x5e.php
index 97bb1a0..75c829d 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x5e.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x5e.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x5f.php b/core/lib/Drupal/Component/Transliteration/data/x5f.php
index e058b66..675ad3e 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x5f.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x5f.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x60.php b/core/lib/Drupal/Component/Transliteration/data/x60.php
index 0181437..8186748 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x60.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x60.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x61.php b/core/lib/Drupal/Component/Transliteration/data/x61.php
index 16683f3..21b7a80 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x61.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x61.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x62.php b/core/lib/Drupal/Component/Transliteration/data/x62.php
index 2e6ad79..0de5674 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x62.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x62.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x63.php b/core/lib/Drupal/Component/Transliteration/data/x63.php
index bfc81eb..9108c93 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x63.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x63.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x64.php b/core/lib/Drupal/Component/Transliteration/data/x64.php
index 99e2e5a..68f1e05 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x64.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x64.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x65.php b/core/lib/Drupal/Component/Transliteration/data/x65.php
index 630152f..ff100d4 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x65.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x65.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x66.php b/core/lib/Drupal/Component/Transliteration/data/x66.php
index 1ddbd25..edebef0 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x66.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x66.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x67.php b/core/lib/Drupal/Component/Transliteration/data/x67.php
index 6195ba8..d0e5d1a 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x67.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x67.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x68.php b/core/lib/Drupal/Component/Transliteration/data/x68.php
index 80c56d4..84f9447 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x68.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x68.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x69.php b/core/lib/Drupal/Component/Transliteration/data/x69.php
index ae4588a..fcc08f2 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x69.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x69.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x6a.php b/core/lib/Drupal/Component/Transliteration/data/x6a.php
index 620a1f3..d5557b8 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x6a.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x6a.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x6b.php b/core/lib/Drupal/Component/Transliteration/data/x6b.php
index 4b070c8..98dbdd1 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x6b.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x6b.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x6c.php b/core/lib/Drupal/Component/Transliteration/data/x6c.php
index d6bfb36..37501ff 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x6c.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x6c.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x6d.php b/core/lib/Drupal/Component/Transliteration/data/x6d.php
index 8c1d211..7c0efb3 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x6d.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x6d.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x6e.php b/core/lib/Drupal/Component/Transliteration/data/x6e.php
index 943cedd..50c7e50 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x6e.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x6e.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x6f.php b/core/lib/Drupal/Component/Transliteration/data/x6f.php
index b1b210b..bcb08f8 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x6f.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x6f.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x70.php b/core/lib/Drupal/Component/Transliteration/data/x70.php
index 3c1fe6a..a04c26a 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x70.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x70.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x71.php b/core/lib/Drupal/Component/Transliteration/data/x71.php
index 2098182..bec4af6 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x71.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x71.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x72.php b/core/lib/Drupal/Component/Transliteration/data/x72.php
index e7f4103..bea999b 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x72.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x72.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x73.php b/core/lib/Drupal/Component/Transliteration/data/x73.php
index 7c08631..237fe05 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x73.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x73.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x74.php b/core/lib/Drupal/Component/Transliteration/data/x74.php
index 5612c5b..e94a71c 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x74.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x74.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x75.php b/core/lib/Drupal/Component/Transliteration/data/x75.php
index eb12f82..fd88d44 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x75.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x75.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x76.php b/core/lib/Drupal/Component/Transliteration/data/x76.php
index c5fe5cb..abfbd36 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x76.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x76.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x77.php b/core/lib/Drupal/Component/Transliteration/data/x77.php
index 80c4854..6a6c4b9 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x77.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x77.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x78.php b/core/lib/Drupal/Component/Transliteration/data/x78.php
index b8b8bd7..b7e4041 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x78.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x78.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x79.php b/core/lib/Drupal/Component/Transliteration/data/x79.php
index 0e82df5..7791564 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x79.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x79.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x7a.php b/core/lib/Drupal/Component/Transliteration/data/x7a.php
index 66aaf57..db12d9b 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x7a.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x7a.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x7b.php b/core/lib/Drupal/Component/Transliteration/data/x7b.php
index 649464d..9db5911 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x7b.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x7b.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x7c.php b/core/lib/Drupal/Component/Transliteration/data/x7c.php
index 27266cc..49aa0a6 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x7c.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x7c.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x7d.php b/core/lib/Drupal/Component/Transliteration/data/x7d.php
index 56be3c1..1cfdab2 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x7d.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x7d.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x7e.php b/core/lib/Drupal/Component/Transliteration/data/x7e.php
index 3a0c514..e66acc5 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x7e.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x7e.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x7f.php b/core/lib/Drupal/Component/Transliteration/data/x7f.php
index 5d50058..7f586dd 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x7f.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x7f.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x80.php b/core/lib/Drupal/Component/Transliteration/data/x80.php
index 223029d..33b80ca 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x80.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x80.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x81.php b/core/lib/Drupal/Component/Transliteration/data/x81.php
index abb6f9e..81fb424 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x81.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x81.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x82.php b/core/lib/Drupal/Component/Transliteration/data/x82.php
index 6f06c86..1013057 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x82.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x82.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x83.php b/core/lib/Drupal/Component/Transliteration/data/x83.php
index 1bdbfc9..0c2a631 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x83.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x83.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x84.php b/core/lib/Drupal/Component/Transliteration/data/x84.php
index 62f7bea..6839979 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x84.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x84.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x85.php b/core/lib/Drupal/Component/Transliteration/data/x85.php
index 78225a2..7fb87f1 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x85.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x85.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x86.php b/core/lib/Drupal/Component/Transliteration/data/x86.php
index 618721a..8615a1d 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x86.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x86.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x87.php b/core/lib/Drupal/Component/Transliteration/data/x87.php
index 5334f1b..be4f227 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x87.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x87.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x88.php b/core/lib/Drupal/Component/Transliteration/data/x88.php
index 859f68b..8843060 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x88.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x88.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x89.php b/core/lib/Drupal/Component/Transliteration/data/x89.php
index 4ea84a6..0504963 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x89.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x89.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x8a.php b/core/lib/Drupal/Component/Transliteration/data/x8a.php
index f93752d..111894c 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x8a.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x8a.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x8b.php b/core/lib/Drupal/Component/Transliteration/data/x8b.php
index b2b3747..0a535f7 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x8b.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x8b.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x8c.php b/core/lib/Drupal/Component/Transliteration/data/x8c.php
index 0415df4..5e805ad 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x8c.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x8c.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x8d.php b/core/lib/Drupal/Component/Transliteration/data/x8d.php
index d4384bf..c4b8695 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x8d.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x8d.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x8e.php b/core/lib/Drupal/Component/Transliteration/data/x8e.php
index fb83f1a..80ef740 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x8e.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x8e.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x8f.php b/core/lib/Drupal/Component/Transliteration/data/x8f.php
index ad4ab4c..a4cd21b 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x8f.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x8f.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x90.php b/core/lib/Drupal/Component/Transliteration/data/x90.php
index 79d3755..e2a817b 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x90.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x90.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x91.php b/core/lib/Drupal/Component/Transliteration/data/x91.php
index 0bc9975..2de4466 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x91.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x91.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x92.php b/core/lib/Drupal/Component/Transliteration/data/x92.php
index dfa57a8..037b461 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x92.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x92.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x93.php b/core/lib/Drupal/Component/Transliteration/data/x93.php
index c6095cf..34928a9 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x93.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x93.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x94.php b/core/lib/Drupal/Component/Transliteration/data/x94.php
index 4141fbd..9763fbc 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x94.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x94.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x95.php b/core/lib/Drupal/Component/Transliteration/data/x95.php
index e6b1518..84f2f89 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x95.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x95.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x96.php b/core/lib/Drupal/Component/Transliteration/data/x96.php
index f277664..f665409 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x96.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x96.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x97.php b/core/lib/Drupal/Component/Transliteration/data/x97.php
index 112a487..1187fbb 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x97.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x97.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x98.php b/core/lib/Drupal/Component/Transliteration/data/x98.php
index 89e4b0b..8e1ff92 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x98.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x98.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x99.php b/core/lib/Drupal/Component/Transliteration/data/x99.php
index 529e674..7e99ac0 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x99.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x99.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x9a.php b/core/lib/Drupal/Component/Transliteration/data/x9a.php
index 9ef7660..3c85540 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x9a.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x9a.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x9b.php b/core/lib/Drupal/Component/Transliteration/data/x9b.php
index 08ba282..9617f97 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x9b.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x9b.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x9c.php b/core/lib/Drupal/Component/Transliteration/data/x9c.php
index 2f7534b..76be43e 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x9c.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x9c.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x9d.php b/core/lib/Drupal/Component/Transliteration/data/x9d.php
index ae0bafa..21e9977 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x9d.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x9d.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x9e.php b/core/lib/Drupal/Component/Transliteration/data/x9e.php
index 3409c52..b50dd0f 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x9e.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x9e.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/x9f.php b/core/lib/Drupal/Component/Transliteration/data/x9f.php
index d0d50b5..49f08e5 100644
--- a/core/lib/Drupal/Component/Transliteration/data/x9f.php
+++ b/core/lib/Drupal/Component/Transliteration/data/x9f.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xa0.php b/core/lib/Drupal/Component/Transliteration/data/xa0.php
index e0553dc..b7fee62 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xa0.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xa0.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xa1.php b/core/lib/Drupal/Component/Transliteration/data/xa1.php
index 9527d86..66cc446 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xa1.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xa1.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xa2.php b/core/lib/Drupal/Component/Transliteration/data/xa2.php
index 62fbe0e..95d4c8c 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xa2.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xa2.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xa3.php b/core/lib/Drupal/Component/Transliteration/data/xa3.php
index 57c1789..a63b281 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xa3.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xa3.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xa4.php b/core/lib/Drupal/Component/Transliteration/data/xa4.php
index 13d0db5..2210454 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xa4.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xa4.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xac.php b/core/lib/Drupal/Component/Transliteration/data/xac.php
index 56c937b..87c2d14 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xac.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xac.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xad.php b/core/lib/Drupal/Component/Transliteration/data/xad.php
index cd74816..4e8eb27 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xad.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xad.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xae.php b/core/lib/Drupal/Component/Transliteration/data/xae.php
index 18797c0..52f7f5c 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xae.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xae.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xaf.php b/core/lib/Drupal/Component/Transliteration/data/xaf.php
index ed4fd35..e5f37fe 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xaf.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xaf.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xb0.php b/core/lib/Drupal/Component/Transliteration/data/xb0.php
index 04a4daf..96071fd 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xb0.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xb0.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xb1.php b/core/lib/Drupal/Component/Transliteration/data/xb1.php
index 5ac43f8..d90ecfc 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xb1.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xb1.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xb2.php b/core/lib/Drupal/Component/Transliteration/data/xb2.php
index 8b0e493..1dced88 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xb2.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xb2.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xb3.php b/core/lib/Drupal/Component/Transliteration/data/xb3.php
index a8b8adc..37a9a07 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xb3.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xb3.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xb4.php b/core/lib/Drupal/Component/Transliteration/data/xb4.php
index d9e86ca..2c46b3a 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xb4.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xb4.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xb5.php b/core/lib/Drupal/Component/Transliteration/data/xb5.php
index 700014c..ee61e54 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xb5.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xb5.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xb6.php b/core/lib/Drupal/Component/Transliteration/data/xb6.php
index ed7ec72..5b209ee 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xb6.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xb6.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xb7.php b/core/lib/Drupal/Component/Transliteration/data/xb7.php
index b234ea9..c19b876 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xb7.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xb7.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xb8.php b/core/lib/Drupal/Component/Transliteration/data/xb8.php
index 66968ca..3743ce2 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xb8.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xb8.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xb9.php b/core/lib/Drupal/Component/Transliteration/data/xb9.php
index aaeb951..0307106 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xb9.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xb9.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xba.php b/core/lib/Drupal/Component/Transliteration/data/xba.php
index dadfc88..3087897 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xba.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xba.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xbb.php b/core/lib/Drupal/Component/Transliteration/data/xbb.php
index 7653d2b..0f582fa 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xbb.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xbb.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xbc.php b/core/lib/Drupal/Component/Transliteration/data/xbc.php
index 126eb46..e145545 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xbc.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xbc.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xbd.php b/core/lib/Drupal/Component/Transliteration/data/xbd.php
index cc3149a..539bb31 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xbd.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xbd.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xbe.php b/core/lib/Drupal/Component/Transliteration/data/xbe.php
index e33edb1..7d3bf6e 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xbe.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xbe.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xbf.php b/core/lib/Drupal/Component/Transliteration/data/xbf.php
index f13fa3a..5681ed1 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xbf.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xbf.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xc0.php b/core/lib/Drupal/Component/Transliteration/data/xc0.php
index 6988321..89512d1 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xc0.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xc0.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xc1.php b/core/lib/Drupal/Component/Transliteration/data/xc1.php
index c33010f..ae62f66 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xc1.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xc1.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xc2.php b/core/lib/Drupal/Component/Transliteration/data/xc2.php
index 446f427..e540707 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xc2.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xc2.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xc3.php b/core/lib/Drupal/Component/Transliteration/data/xc3.php
index e2c00f4..4fd9755 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xc3.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xc3.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xc4.php b/core/lib/Drupal/Component/Transliteration/data/xc4.php
index ec0b411..0e9034f 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xc4.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xc4.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xc5.php b/core/lib/Drupal/Component/Transliteration/data/xc5.php
index 22520f6..21085ce 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xc5.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xc5.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xc6.php b/core/lib/Drupal/Component/Transliteration/data/xc6.php
index c97c3c5..7cd53f2 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xc6.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xc6.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xc7.php b/core/lib/Drupal/Component/Transliteration/data/xc7.php
index 207ac1a..f362ad4 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xc7.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xc7.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xc8.php b/core/lib/Drupal/Component/Transliteration/data/xc8.php
index c4d155f..656a070 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xc8.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xc8.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xc9.php b/core/lib/Drupal/Component/Transliteration/data/xc9.php
index 9a540e1..5fd5eb5 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xc9.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xc9.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xca.php b/core/lib/Drupal/Component/Transliteration/data/xca.php
index b920245..7ebaa75 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xca.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xca.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xcb.php b/core/lib/Drupal/Component/Transliteration/data/xcb.php
index db77115..cbd291a 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xcb.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xcb.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xcc.php b/core/lib/Drupal/Component/Transliteration/data/xcc.php
index ad299a3..d543b26 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xcc.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xcc.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xcd.php b/core/lib/Drupal/Component/Transliteration/data/xcd.php
index b851a50..6f730e5 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xcd.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xcd.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xce.php b/core/lib/Drupal/Component/Transliteration/data/xce.php
index 0623056..099354e 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xce.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xce.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xcf.php b/core/lib/Drupal/Component/Transliteration/data/xcf.php
index b13e5e3..434113f 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xcf.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xcf.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xd0.php b/core/lib/Drupal/Component/Transliteration/data/xd0.php
index ddc6ed4..848b49c 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xd0.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xd0.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xd1.php b/core/lib/Drupal/Component/Transliteration/data/xd1.php
index b4227c1..c6504f4 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xd1.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xd1.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xd2.php b/core/lib/Drupal/Component/Transliteration/data/xd2.php
index 5eeb490..741c229 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xd2.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xd2.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xd3.php b/core/lib/Drupal/Component/Transliteration/data/xd3.php
index f0202a4..54aab18 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xd3.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xd3.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xd4.php b/core/lib/Drupal/Component/Transliteration/data/xd4.php
index 95340ac..0df6410 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xd4.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xd4.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xd5.php b/core/lib/Drupal/Component/Transliteration/data/xd5.php
index 6666a84..2dbeada 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xd5.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xd5.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xd6.php b/core/lib/Drupal/Component/Transliteration/data/xd6.php
index 3a14390..e86914f 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xd6.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xd6.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xd7.php b/core/lib/Drupal/Component/Transliteration/data/xd7.php
index a2133e1..af74c89 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xd7.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xd7.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xf9.php b/core/lib/Drupal/Component/Transliteration/data/xf9.php
index f4c9a5f..efc8499 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xf9.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xf9.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xfa.php b/core/lib/Drupal/Component/Transliteration/data/xfa.php
index 0a6e25a..7ba4ae8 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xfa.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xfa.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xfb.php b/core/lib/Drupal/Component/Transliteration/data/xfb.php
index 35217c7..7dd47ae 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xfb.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xfb.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xfc.php b/core/lib/Drupal/Component/Transliteration/data/xfc.php
index f6c6d86..959ef1e 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xfc.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xfc.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xfd.php b/core/lib/Drupal/Component/Transliteration/data/xfd.php
index 8c860b2..26372c4 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xfd.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xfd.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xfe.php b/core/lib/Drupal/Component/Transliteration/data/xfe.php
index 4622c47..c53867b 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xfe.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xfe.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Component/Transliteration/data/xff.php b/core/lib/Drupal/Component/Transliteration/data/xff.php
index 13ead28..8085298 100644
--- a/core/lib/Drupal/Component/Transliteration/data/xff.php
+++ b/core/lib/Drupal/Component/Transliteration/data/xff.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Generic transliteration data for the PHPTransliteration class.
+ * Generic transliteration data for the PhpTransliteration class.
  */
 
 $base = array(
diff --git a/core/lib/Drupal/Core/Transliteration/PHPTransliteration.php b/core/lib/Drupal/Core/Transliteration/PHPTransliteration.php
deleted file mode 100644
index 675b20c..0000000
--- a/core/lib/Drupal/Core/Transliteration/PHPTransliteration.php
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-
-/**
- * @file
- * Contains \Drupal\Core\Transliteration\PHPTransliteration.
- */
-
-namespace Drupal\Core\Transliteration;
-
-use Drupal\Component\Transliteration\PHPTransliteration as BaseTransliteration;
-
-/**
- * Enhances PHPTransliteration with an alter hook.
- *
- * @ingroup transliteration
- * @see hook_transliteration_overrides_alter()
- */
-class PHPTransliteration extends BaseTransliteration {
-
-  /**
-   * Overrides \Drupal\Component\Transliteration\PHPTransliteration::readLanguageOverrides().
-   *
-   * Allows modules to alter the language-specific $overrides array by invoking
-   * hook_transliteration_overrides_alter().
-   */
-  protected function readLanguageOverrides($langcode) {
-    parent::readLanguageOverrides($langcode);
-
-    // Let modules alter the language-specific overrides.
-    \Drupal::moduleHandler()->alter('transliteration_overrides', $this->languageOverrides[$langcode], $langcode);
-  }
-
-}
diff --git a/core/lib/Drupal/Core/Transliteration/PhpTransliteration.php b/core/lib/Drupal/Core/Transliteration/PhpTransliteration.php
new file mode 100644
index 0000000..42ba3f0
--- /dev/null
+++ b/core/lib/Drupal/Core/Transliteration/PhpTransliteration.php
@@ -0,0 +1,33 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Core\Transliteration\PhpTransliteration.
+ */
+
+namespace Drupal\Core\Transliteration;
+
+use Drupal\Component\Transliteration\PhpTransliteration as BaseTransliteration;
+
+/**
+ * Enhances PhpTransliteration with an alter hook.
+ *
+ * @ingroup transliteration
+ * @see hook_transliteration_overrides_alter()
+ */
+class PhpTransliteration extends BaseTransliteration {
+
+  /**
+   * Overrides \Drupal\Component\Transliteration\PhpTransliteration::readLanguageOverrides().
+   *
+   * Allows modules to alter the language-specific $overrides array by invoking
+   * hook_transliteration_overrides_alter().
+   */
+  protected function readLanguageOverrides($langcode) {
+    parent::readLanguageOverrides($langcode);
+
+    // Let modules alter the language-specific overrides.
+    \Drupal::moduleHandler()->alter('transliteration_overrides', $this->languageOverrides[$langcode], $langcode);
+  }
+
+}
diff --git a/core/modules/migrate/src/Plugin/migrate/process/MachineName.php b/core/modules/migrate/src/Plugin/migrate/process/MachineName.php
index 9af3fdc..d549267 100644
--- a/core/modules/migrate/src/Plugin/migrate/process/MachineName.php
+++ b/core/modules/migrate/src/Plugin/migrate/process/MachineName.php
@@ -26,7 +26,7 @@
 class MachineName extends ProcessPluginBase {
 
   /**
-   * @var \Drupal\Core\Transliteration\PHPTransliteration
+   * @var \Drupal\Core\Transliteration\PhpTransliteration
    */
   protected $transliteration;
 
@@ -43,7 +43,7 @@ public function transform($value, MigrateExecutable $migrate_executable, Row $ro
   /**
    * Get the transliteration object.
    *
-   * @return \Drupal\Core\Transliteration\PHPTransliteration
+   * @return \Drupal\Core\Transliteration\PhpTransliteration
    *   The transliteration object.
    */
   protected function getTransliteration() {
diff --git a/core/modules/system/src/Tests/Transliteration/TransliterationTest.php b/core/modules/system/src/Tests/Transliteration/TransliterationTest.php
index 60a0e5c..d21cfba 100644
--- a/core/modules/system/src/Tests/Transliteration/TransliterationTest.php
+++ b/core/modules/system/src/Tests/Transliteration/TransliterationTest.php
@@ -7,7 +7,7 @@
 
 namespace Drupal\system\Tests\Transliteration;
 
-use Drupal\Core\Transliteration\PHPTransliteration;
+use Drupal\Core\Transliteration\PhpTransliteration;
 use Drupal\simpletest\KernelTestBase;
 
 /**
@@ -24,9 +24,9 @@ class TransliterationTest extends KernelTestBase {
   public static $modules = array('transliterate_test');
 
   /**
-   * Tests the PHPTransliteration class.
+   * Tests the PhpTransliteration class.
    */
-  public function testPHPTransliteration() {
+  public function testPhpTransliteration() {
     $random = $this->randomMachineName(10);
     // Make some strings with two, three, and four-byte characters for testing.
     // Note that the 3-byte character is overridden by the 'kg' language.
@@ -83,7 +83,7 @@ public function testPHPTransliteration() {
     foreach($cases as $case) {
       list($langcode, $original, $expected) = $case;
       $printable = (isset($case[3])) ? $case[3] : $original;
-      $transliterator_class = new PHPTransliteration();
+      $transliterator_class = new PhpTransliteration();
       $actual = $transliterator_class->transliterate($original, $langcode);
       $this->assertIdentical($actual, $expected, format_string('@original transliteration to @actual is identical to @expected for language @langcode in new class instance.', array(
         '@original' => $printable,
diff --git a/core/modules/system/tests/src/Unit/Transliteration/MachineNameControllerTest.php b/core/modules/system/tests/src/Unit/Transliteration/MachineNameControllerTest.php
index e77dcd5..82d68d9 100644
--- a/core/modules/system/tests/src/Unit/Transliteration/MachineNameControllerTest.php
+++ b/core/modules/system/tests/src/Unit/Transliteration/MachineNameControllerTest.php
@@ -8,7 +8,7 @@
 namespace Drupal\Tests\system\Unit\Transliteration;
 
 use Drupal\Tests\UnitTestCase;
-use Drupal\Component\Transliteration\PHPTransliteration;
+use Drupal\Component\Transliteration\PhpTransliteration;
 use Drupal\system\MachineNameController;
 use Symfony\Component\HttpFoundation\Request;
 
@@ -29,7 +29,7 @@ class MachineNameControllerTest extends UnitTestCase {
   protected function setUp() {
     parent::setUp();
     // Create the machine name controller.
-    $this->machineNameController = new MachineNameController(new PHPTransliteration());
+    $this->machineNameController = new MachineNameController(new PhpTransliteration());
   }
 
   /**
diff --git a/core/scripts/transliteration_data.php.txt b/core/scripts/transliteration_data.php.txt
index c73331b..e87d2fa 100644
--- a/core/scripts/transliteration_data.php.txt
+++ b/core/scripts/transliteration_data.php.txt
@@ -240,7 +240,7 @@ function patch_drupal($outdir) {
  *   bytes of Unicode characters (or 0 for base ASCII characters). The next
  *   level is the other two bytes, and the values are the transliterations.
  *
- * @see PHPTransliteration::readGenericData()
+ * @see PhpTransliteration::readGenericData()
  */
 function read_drupal_data() {
   $dir = __DIR__ . '/data';
@@ -635,7 +635,7 @@ function write_data_file($data, $bank, $outdir) {
   $file = $dir . '/x' . sprintf('%02x', $bank) . '.php';
 
   $out = '';
-  $out .= "<?php\n\n/**\n * @file\n * Generic transliteration data for the PHPTransliteration class.\n */\n\n\$base = array(\n";
+  $out .= "<?php\n\n/**\n * @file\n * Generic transliteration data for the PhpTransliteration class.\n */\n\n\$base = array(\n";
 
   // The 00 file skips the ASCII range
   $start = 0;
diff --git a/core/tests/Drupal/Tests/Core/Block/BlockBaseTest.php b/core/tests/Drupal/Tests/Core/Block/BlockBaseTest.php
index 88be050..fdf8787 100644
--- a/core/tests/Drupal/Tests/Core/Block/BlockBaseTest.php
+++ b/core/tests/Drupal/Tests/Core/Block/BlockBaseTest.php
@@ -22,8 +22,8 @@ class BlockBaseTest extends UnitTestCase {
    * @see \Drupal\Core\Block\BlockBase::getMachineNameSuggestion().
    */
   public function testGetMachineNameSuggestion() {
-    $transliteration = $this->getMockBuilder('Drupal\Core\Transliteration\PHPTransliteration')
-      // @todo Inject the module handler into PHPTransliteration.
+    $transliteration = $this->getMockBuilder('Drupal\Core\Transliteration\PhpTransliteration')
+      // @todo Inject the module handler into PhpTransliteration.
       ->setMethods(array('readLanguageOverrides'))
       ->getMock();
 
