Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / config_translation / src / Plugin / Menu / LocalTask / ConfigTranslationLocalTask.php
index 0aa84d224317db4ac2d434215c875ca7d36904e4..e781c9bd9a22c7ab7ae994f20ba49276844ce7a0 100644 (file)
@@ -2,7 +2,6 @@
 
 namespace Drupal\config_translation\Plugin\Menu\LocalTask;
 
-use Drupal\Component\Utility\Unicode;
 use Drupal\Core\Menu\LocalTaskDefault;
 use Drupal\Core\StringTranslation\StringTranslationTrait;
 use Symfony\Component\HttpFoundation\Request;
@@ -28,7 +27,7 @@ class ConfigTranslationLocalTask extends LocalTaskDefault {
     // retrieve title. We need to retrieve a runtime title (as opposed to
     // storing the title on the plugin definition for the link) because
     // it contains translated parts that we need in the runtime language.
-    $type_name = Unicode::strtolower($this->mapperManager()->createInstance($this->pluginDefinition['config_translation_plugin_id'])->getTypeLabel());
+    $type_name = mb_strtolower($this->mapperManager()->createInstance($this->pluginDefinition['config_translation_plugin_id'])->getTypeLabel());
     return $this->t('Translate @type_name', ['@type_name' => $type_name]);
   }