Determines if this translator supports remote language mappings.
bool In case translator does not explicitly state that it does not provide the mapping feature it will return TRUE.
Overrides TranslatorInterface::providesRemoteLanguageMappings
public function providesRemoteLanguageMappings() {
$definition = \Drupal::service('plugin.manager.tmgmt.translator')
->getDefinition($this
->getPluginId());
if (!isset($definition['map_remote_languages'])) {
return TRUE;
}
return $definition['map_remote_languages'];
}