function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
AbAb 

get the translations in vs code for flows (which were bult from flow builder)

Hello,
How can i retrive translations of a Flow in visualstudio or package ,please ?
I have a flow whch i build using flow builder, it has two version, the version are translated in translation workbench.
how can i retrive them
Best Answer chosen by Ab
VinayVinay (Salesforce Developers) 
Hi Sandrine,

You can try below.
 
<?xml version="1.0" encoding="UTF-8"?>
<Package xmlns="http://soap.sforce.com/2006/04/metadata">
    <types>
       <members>*</members>
       <name>CustomLabels</name>
    </types>
    <types>
       <members>*</members>
        <name>Translations</name>
    </types>
    <version>50.0</version>
</Package>

https://salesforce.stackexchange.com/questions/269389/how-do-i-retrieve-a-flow-and-associated-metadata-from-an-org

Hope above information was helpful.

Please mark as Best Answer so that it can help others in the future.

Thanks,