function TranslationManager::getStringTranslation
Overrides TranslatorInterface::getStringTranslation
1 call to TranslationManager::getStringTranslation()
- TranslationManager::doTranslate in core/
lib/ Drupal/ Core/ StringTranslation/ TranslationManager.php - Translates a string to the current language or to a given language.
File
-
core/
lib/ Drupal/ Core/ StringTranslation/ TranslationManager.php, line 87
Class
- TranslationManager
- Defines a chained translation implementation combining multiple translators.
Namespace
Drupal\Core\StringTranslationCode
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;
}