This bundle adds an XLSX export profile that export attributes labels instead of codes.
composer req niji/akeneo-labelized-export-bundle
In your app/AppKernel.php
add a line to enable the bundle:
public function registerProjectBundles() {
return [
// your app bundles should be registered here,
.../...
new Niji\AkeneoLabelizedExportBundle\AkeneoLabelizedExportBundle(),
.../...
];
}
This export profile assume that there is only one locale selected on the profile configuration. In case there are multiple locales selected, it'll take in account only the first one for the labels and simple/multi select attributes values.