function TranslationManager::getStringTranslation

Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Core/StringTranslation/TranslationManager.php \Drupal\Core\StringTranslation\TranslationManager::getStringTranslation()

File

core/lib/Drupal/Core/StringTranslation/TranslationManager.php, line 87

Class

TranslationManager
Defines a chained translation implementation combining multiple translators.

Namespace

Drupal\Core\StringTranslation

Code

public function getStringTranslation($langcode, $string, $context) {
  if ($this->sortedTranslators === NULL) {
    $this->sortedTranslators = $this->sortTranslators();
  }
  foreach ($this->sortedTranslators as $translator) {
    $translation = $translator->getStringTranslation($langcode, $string, $context);
    if ($translation !== FALSE) {
      return $translation;
    }
  }
  // No translator got a translation.
  return FALSE;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.