->
addLocation('configuration',
$name) ->
save();
} // Add an entry, either the translation found, or a blank string object
// to track the source string, to this configuration location, language,
// and context.
$this->translations
[$name][$langcode][$context][$source] =
$translation;
} // Return the string only when the string object had a translation.
if ($this->translations
[$name][$langcode][$context][$source]->
isTranslation()) { return $this->translations
[$name][$langcode][$context][$source]->
getString();
} } return FALSE;
} /**
* Reset static cache of configuration string translations.
*
* @return $this
*/