public function StaticTranslation::getStringTranslation in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/StringTranslation/Translator/StaticTranslation.php \Drupal\Core\StringTranslation\Translator\StaticTranslation::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
File
- core/
lib/ Drupal/ Core/ StringTranslation/ Translator/ StaticTranslation.php, line 38 - Contains \Drupal\Core\StringTranslation\Translator\StaticTranslation.
Class
- StaticTranslation
- String translator with a static cache for translations.
Namespace
Drupal\Core\StringTranslation\TranslatorCode
public function getStringTranslation($langcode, $string, $context) {
if (!isset($this->translations[$langcode])) {
$this->translations[$langcode] = $this
->getLanguage($langcode);
}
if (isset($this->translations[$langcode][$context][$string])) {
return $this->translations[$langcode][$context][$string];
}
else {
return FALSE;
}
}