public function TranslatorInterface::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.

3 methods override TranslatorInterface::getStringTranslation()
LocaleTranslation::getStringTranslation in drupal/core/modules/locale/lib/Drupal/locale/LocaleTranslation.php
Retrieves English string to given language.
StaticTranslation::getStringTranslation in drupal/core/lib/Drupal/Core/StringTranslation/Translator/StaticTranslation.php
Retrieves English string to given language.
TranslationManager::getStringTranslation in drupal/core/lib/Drupal/Core/StringTranslation/TranslationManager.php
Retrieves English string to given language.

File

drupal/core/lib/Drupal/Core/StringTranslation/Translator/TranslatorInterface.php, line 28
Contains \Drupal\Core\StringTranslation\Translator\TranslationInterface.

Class

TranslatorInterface
Interface for objects capable of string translation.

Namespace

Drupal\Core\StringTranslation\Translator

Code

public function getStringTranslation($langcode, $string, $context);