public TranslationManager::getStringTranslation($langcode, $string, $context)
Retrieves English string to given language.
string $langcode: Language code to translate to.
string $string: The source string.
string $context: The string context.
string|FALSE Translated string if there is a translation, FALSE if not.
Overrides TranslatorInterface::getStringTranslation
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; }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!StringTranslation!TranslationManager.php/function/TranslationManager::getStringTranslation/8.1.x