function TranslatableMarkup::getStringTranslation
Gets the string translation service.
Return value
\Drupal\Core\StringTranslation\TranslationInterface The string translation service.
File
- 
              core/lib/ Drupal/ Core/ StringTranslation/ TranslatableMarkup.php, line 213 
Class
- TranslatableMarkup
- Provides translatable markup class.
Namespace
Drupal\Core\StringTranslationCode
protected function getStringTranslation() {
  if (!$this->stringTranslation) {
    $this->stringTranslation = \Drupal::service('string_translation');
  }
  return $this->stringTranslation;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
