Returns the translator plugin labels.
array Array of plugin labels, keyed by the plugin id.
public function getLabels() {
$list = array();
foreach ($this
->getDefinitions() as $plugin => $definition) {
$list[$plugin] = $definition['label'];
}
return $list;
}