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 / ContextualLink / ConfigTranslationContextualLink.php
index fff82f0c7299c3f4294b6be4ad1fdc50761de083..c808ebf56a75f637da23869f45c6eb7708585583 100644 (file)
@@ -2,7 +2,6 @@
 
 namespace Drupal\config_translation\Plugin\Menu\ContextualLink;
 
-use Drupal\Component\Utility\Unicode;
 use Drupal\Core\Menu\ContextualLinkDefault;
 use Drupal\Core\StringTranslation\StringTranslationTrait;
 use Symfony\Component\HttpFoundation\Request;
@@ -28,7 +27,7 @@ class ConfigTranslationContextualLink extends ContextualLinkDefault {
     // retrieve the 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]);
   }