public function TranslationManager::getStringTranslation

Retrieves English string to given language.

Parameters

string $langcode: Language code to translate to.

string $string: The source string.

string $context: The string context.

Return value

string|FALSE Translated string if there is a translation, FALSE if not.

Overrides TranslatorInterface::getStringTranslation

1 call to TranslationManager::getStringTranslation()
TranslationManager::translate in drupal/core/lib/Drupal/Core/StringTranslation/TranslationManager.php
Translates a string to the current language or to a given language.

File

drupal/core/lib/Drupal/Core/StringTranslation/TranslationManager.php, line 93
Contains \Drupal\Core\StringTranslation\TranslationManager.

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;
}