It seems that the cdm field trainingAbroadInfo (internshipAbroad in Ametys) is not imported.
I found that in the file `/Ametys - Plugin ODF Sync/main/plugin-odf-sync/stylesheets/program2content.xsl`
In the template `program-trainingInfo`, the label is set, and not the cdm value.
To solve this, replace
`<internshipAbroad><xsl:value-of select="cdm:infoBlock[@userDefined = 'ametys-extension']/cdm:extension/ametys-cdm:training/ametys-cdm:trainingAbroadInfo"/></internshipAbroad>`
with
`<internshipAbroad><xsl:value-of select="cdm:infoBlock[@userDefined = 'ametys-extension']/cdm:extension/ametys-cdm:training/ametys-cdm:trainingAbroadInfo/@value"/></internshipAbroad>`
(not tested this way, I made it in my project)